diff --git a/lib/stripe-force/constants.rb b/lib/stripe-force/constants.rb index a5955529b4..b77808d854 100644 --- a/lib/stripe-force/constants.rb +++ b/lib/stripe-force/constants.rb @@ -82,6 +82,27 @@ class CPQQuoteTypeOptions < T::Enum CPQ_DEFAULT_SUBSCRIPTION_TERM = 'SBQQ__DefaultSubscriptionTerm__c' CPQ_QUOTE_LINE_DEFAULT_SUBSCRIPTION_TERM = 12 + # CPQ fields used to create a PriceDimension + CPQ_PRICE_DIMENSION = "SBQQ__Dimension__c" + CPQ_PRICE_DIMENSION_TYPE = "SBQQ__Type__c" + + # CPQ fields on the OrderItem that are related to PriceDimension + CPQ_ORDER_ITEM_SEGMENT_KEY = "SBQQ__SegmentKey__c" + CPQ_ORDER_ITEM_SEGMENT_INDEX = "SBQQ__SegmentIndex__c" + CPQ_ORDER_ITEM_SEGMENT_LABEL = "SBQQ__SegmentLabel__c" + CPQ_ORDER_ITEM_PRICE_DIMENSION_ID = "SBQQ__PriceDimension__c" + CPQ_ORDER_ITEM_PRICE_DIMENSION_TYPE = "SBQQ__DimensionType__c" + class CPQPriceDimensionTypeOptions < T::Enum + enums do + MONTH = new("Month") + QUARTER = new("Quarter") + YEAR = new("Year") + # not supported yet + # CUSTOM = new("Custom") + # ONE_TIME = new("One Time") + end + end + CPQ_QUOTE_BILLING_FREQUENCY = 'SBQQ__BillingFrequency__c' class CPQBillingFrequencyOptions < T::Enum enums do diff --git a/lib/stripe-force/translate/mapper.rb b/lib/stripe-force/translate/mapper.rb index b0cca938e2..3ae579d668 100644 --- a/lib/stripe-force/translate/mapper.rb +++ b/lib/stripe-force/translate/mapper.rb @@ -29,6 +29,7 @@ def self.mapping_key_for_record(stripe_record, sf_record) compound_key = stripe_record_class == Stripe::Price && sf_record&.sobject_type == SF_ORDER_ITEM if compound_key + log.info 'using compound key for price order item', sf_record = T.must(sf_record) stripe_record_key + "_" + Translate::Metadata.sf_object_metadata_name(sf_record) else diff --git a/lib/stripe-force/translate/order.rb b/lib/stripe-force/translate/order.rb index 2231f7463b..075594a3d3 100644 --- a/lib/stripe-force/translate/order.rb +++ b/lib/stripe-force/translate/order.rb @@ -162,7 +162,7 @@ def migrate_pre_integration_order(contract_structure) # this should never happen, but we are still learning about CPQ # if metered billing, quantity is not set, so we set to 1 if subscription.items.map {|l| l[:quantity] || 1 }.any?(&:zero?) - Integrations::ErrorContext.report_edge_case("quantity is zero on initial subscription") + Integrations::ErrorContext.report_edge_case("Quantity is zero on initial subscription") end # https://jira.corp.stripe.com/browse/PLATINT-1731 @@ -423,7 +423,6 @@ def create_stripe_transaction_from_sf_order(sf_order) sf_order_items = order_lines_from_order(sf_order) invoice_items, subscription_items = phase_items_from_order_lines(sf_order_items) - is_recurring_order = !subscription_items.empty? if !is_recurring_order invoice = create_stripe_invoice_from_order(stripe_customer, invoice_items, sf_order) @@ -434,8 +433,8 @@ def create_stripe_transaction_from_sf_order(sf_order) return invoice end - order_is_evergreen = is_salesforce_order_evergreen(sf_order) - if order_is_evergreen + has_evergreen_products = is_salesforce_order_evergreen(sf_order) + if has_evergreen_products log.info 'order has evergreen products, creating subscription' validate_evergreen_order(sf_order_items) @@ -454,13 +453,24 @@ def create_stripe_transaction_from_sf_order(sf_order) mapper.assign_values_from_hash(subscription_schedule, subscription_params) apply_mapping(subscription_schedule, sf_order) - subscription_schedule_phases = generate_phases_for_initial_order( - sf_order: sf_order, - invoice_items: invoice_items, - subscription_items: subscription_items, - subscription_schedule: subscription_schedule, - stripe_customer: stripe_customer - ) + has_mdq_products = sf_order_contains_mdq_order_items(sf_order_items) + if has_mdq_products + log.info 'sf order contains mdq product' + subscription_schedule_phases = generate_phases_for_initial_order_with_mdq( + sf_order: sf_order, + subscription_items: subscription_items, + invoice_items: invoice_items, + subscription_schedule: subscription_schedule, + stripe_customer: stripe_customer) + else + subscription_schedule_phases = generate_phases_for_initial_order( + sf_order: sf_order, + invoice_items: invoice_items, + subscription_items: subscription_items, + subscription_schedule: subscription_schedule, + stripe_customer: stripe_customer + ) + end # TODO refactor once caching is stable, more notes in the `generate_phases_for_initial_rder` if subscription_schedule_phases.is_a?(Stripe::Invoice) @@ -484,7 +494,7 @@ def create_stripe_transaction_from_sf_order(sf_order) # this should never happen, but we are still learning about CPQ # if metered billing, quantity is not set, so we set to 1 if OrderHelpers.extract_all_items_from_subscription_schedule(subscription_schedule).map {|l| l[:quantity] || 1 }.any?(&:zero?) - Integrations::ErrorContext.report_edge_case("quantity is zero on initial subscription schedule") + Integrations::ErrorContext.report_edge_case("Quantity is zero on initial subscription schedule") end # https://jira.corp.stripe.com/browse/PLATINT-1731 @@ -511,6 +521,91 @@ def create_stripe_transaction_from_sf_order(sf_order) stripe_transaction end + sig do + params( + sf_order: T.untyped, + invoice_items: T::Array[ContractItemStructure], + subscription_items: T::Array[ContractItemStructure], + subscription_schedule: Stripe::SubscriptionSchedule, + stripe_customer: Stripe::Customer + ).returns(T::Array[Stripe::SubscriptionSchedulePhase]) + end + def generate_phases_for_initial_order_with_mdq(sf_order:, invoice_items:, subscription_items:, subscription_schedule:, stripe_customer:) + sub_schedule_phases = [] + + # extract the quote start date and subscription term from the order + # to calculate the end date + string_start_date_from_salesforce = subscription_schedule['start_date'] + start_date_from_salesforce = DateTime.parse(string_start_date_from_salesforce) + subscription_term_from_salesforce = StripeForce::Utilities::SalesforceUtil.extract_subscription_term_from_order!(mapper, sf_order) + + order_end_date = StripeForce::Utilities::SalesforceUtil.datetime_to_unix_timestamp(start_date_from_salesforce + subscription_term_from_salesforce.months) + + # split the subscription items by mdq and non-mdq products + # non segmented items are for the entire contact so they will be added to each phase + non_segmented_items = [] + segmented_subscription_items = [] + + subscription_items.each do |item| + if item.is_mdq_segment? + segmented_subscription_items << item + else + # if it's not an mdq product, there will be no segment index, and the sub item will be across all phases + non_segmented_items << item.stripe_params + end + end + + # sort the mdq products by segment index + segmented_subscription_items = segmented_subscription_items.sort_by do |item| + if item.mdq_dimension_type == 'Custom' + raise StripeForce::Errors::RawUserError.new("MDQ products with custom segments are not yet supported.") + end + + item.mdq_segment_index + end + + # CPQ Quote discounts will apply across each phase / segment + phase_discounts = stripe_discounts_for_sf_object(sf_object: sf_order) + + # for each subscription item, add it to the corresponding sub phase + segmented_subscription_items.each do |sub_item| + # many of the mdq fields live on the corresponding quote line + quote_line_data = backoff { @user.sf_client.find(CPQ_QUOTE_LINE, sub_item.order_line[CPQ_QUOTE_LINE]) } + sub_item_end_date = StripeForce::Utilities::SalesforceUtil.salesforce_date_to_unix_timestamp(quote_line_data[CPQ_QUOTE_SUBSCRIPTION_END_DATE]) + 1.day.to_i + + # adds a new phase for the newest segment + mdq_segment_index = sub_item.mdq_segment_index + if sub_schedule_phases.empty? || sub_schedule_phases.count < mdq_segment_index + # create a new phase for this segment index + sub_schedule_phases << { + add_invoice_items: [], + items: non_segmented_items.dup, + end_date: sub_item_end_date, + metadata: Metadata.stripe_metadata_for_sf_object(@user, sf_order).merge({salesforce_segment_key: sub_item.order_line[CPQ_ORDER_ITEM_SEGMENT_KEY], salesforce_segment_label: quote_line_data[CPQ_ORDER_ITEM_SEGMENT_LABEL]}), + discounts: phase_discounts, + } + end + + # add the subscription item to the existing segment index phase + last_index = sub_schedule_phases.count - 1 + + # let's be defensive and throw a error if the order items in the same segment have different end dates + if sub_schedule_phases[last_index][:end_date] != sub_item_end_date + log.error 'sf order items in the same segment have different end dates', sf_order_item: sub_item.order_line + raise Integrations::Errors::ImpossibleState.new('Salesforce Order Items in the same MDQ segment has different end date than the other segments.', salesforce_object: sub_item.order_line) + end + + # add the item to the last phase / segment + sub_schedule_phases[last_index][:items] << sub_item.stripe_params + end + + # Salesforce EndDate is the end of the last day of the subscription while the calculated EndDate we send to Stripe + # is the day after the last day of the subscription. This is because Stripe's subscription schedule end date is exclusive. + sub_schedule_phases[sub_schedule_phases.count - 1][:end_date] = order_end_date + sub_schedule_phases + end + + # it is important that the subscription schedule is passed in before the start_date is transformed sig do params( @@ -522,9 +617,9 @@ def create_stripe_transaction_from_sf_order(sf_order) ).returns(T.any(Stripe::Invoice, [Hash, T.nilable(Hash)])) end def generate_phases_for_initial_order(sf_order:, invoice_items:, subscription_items:, subscription_schedule:, stripe_customer:) + # extract the quote start date from the order string_start_date_from_salesforce = subscription_schedule['start_date'] - # TODO should avoid using blind parse and instead enforce a strict SF datetime format - start_date_from_salesforce = DateTime.parse(string_start_date_from_salesforce).utc + start_date_from_salesforce = DateTime.parse(string_start_date_from_salesforce) subscription_start_date_as_timestamp = StripeForce::Utilities::SalesforceUtil.salesforce_date_to_unix_timestamp(string_start_date_from_salesforce) # the user maps to this to determine the subscription schedule end date diff --git a/lib/stripe-force/translate/order/contract_item.rb b/lib/stripe-force/translate/order/contract_item.rb index 00c88f8521..e7d24e5a59 100644 --- a/lib/stripe-force/translate/order/contract_item.rb +++ b/lib/stripe-force/translate/order/contract_item.rb @@ -79,5 +79,21 @@ def new_order_line? def from_order?(sf_order) self.order_line['OrderId'] == sf_order.Id end + + sig { returns(T::Boolean) } + def is_mdq_segment? + self.order_line[CPQ_ORDER_ITEM_SEGMENT_KEY].present? + end + + # this starts at 1 index + sig { returns(T.nilable(Integer)) } + def mdq_segment_index + self.order_line[CPQ_ORDER_ITEM_SEGMENT_INDEX] + end + + sig { returns(T.nilable(String)) } + def mdq_dimension_type + self.order_line[CPQ_ORDER_ITEM_PRICE_DIMENSION_TYPE] + end end end diff --git a/lib/stripe-force/translate/order/helpers.rb b/lib/stripe-force/translate/order/helpers.rb index ed3cfdc7c0..23cc12271d 100644 --- a/lib/stripe-force/translate/order/helpers.rb +++ b/lib/stripe-force/translate/order/helpers.rb @@ -56,8 +56,7 @@ def self.prorated_order?(subscription_term:, billing_frequency:) sig { params(subscription_schedule: Stripe::SubscriptionSchedule).returns(T::Array[T.any(Stripe::SubscriptionSchedulePhaseSubscriptionItem, Stripe::SubscriptionSchedulePhaseInvoiceItem)]) } def self.extract_all_items_from_subscription_schedule(subscription_schedule) - subscription_schedule.phases.map(&:items).flatten + - subscription_schedule.phases.map(&:add_invoice_items).flatten + subscription_schedule.phases.map(&:items).flatten + subscription_schedule.phases.map(&:add_invoice_items).flatten end # after lines have been adjusted with termination line, they should be removed diff --git a/lib/stripe-force/translate/price.rb b/lib/stripe-force/translate/price.rb index 65aace84ed..afde70dd9a 100644 --- a/lib/stripe-force/translate/price.rb +++ b/lib/stripe-force/translate/price.rb @@ -424,8 +424,8 @@ def generate_price_params_from_sf_object(sf_object, sf_product) end # TODO it's possible that a custom mapping is defined for this value and it's an integer, we should support this case in the helper method - # this represents how often the price is billed: i.e. if `interval` is month and `interval_count` - # is 2, then this price is billed every two months. + # this represents how often the price is billed: + # i.e. if `interval` is month and `interval_count` is 2, then this price is billed every two months. stripe_price.recurring[:interval_count] = PriceHelpers.transform_salesforce_billing_frequency_to_recurring_interval(stripe_price.recurring[:interval_count]) # frequency: monthly or daily, defined on the CPQ @@ -497,7 +497,13 @@ def calculate_price_multiplier(mapper, sf_order, sf_order_item, billing_frequenc # TODO should we adjust based on the quantity? Most likely, let's wait until tests fail price_multiplier = BigDecimal(T.must(quote_subscription_term)) / BigDecimal(billing_frequency) - validate_price_multipliers(price_multiplier, cpq_price_multiplier, false) + + # TODO should test this further with proration amendments + # For MDQ orders, the quote subscription term is not the effective subscription term + if !validate_price_multipliers(price_multiplier, cpq_price_multiplier, false) && quote_subscription_term != effective_subscription_term + price_multiplier = BigDecimal(T.must(effective_subscription_term)) / BigDecimal(billing_frequency) + end + price_multiplier end @@ -514,6 +520,7 @@ def validate_price_multipliers(calculated_price_multiplier, cpq_price_multiplier if throw_error raise Integrations::Errors::TranslatorError.new("calculated price multiplier differs from cpq price multiplier") end + return false end end diff --git a/lib/stripe-force/translate/utilities/demo_util.rb b/lib/stripe-force/translate/utilities/demo_util.rb index f5c6cfeb2a..68395b4236 100644 --- a/lib/stripe-force/translate/utilities/demo_util.rb +++ b/lib/stripe-force/translate/utilities/demo_util.rb @@ -93,10 +93,10 @@ def create_salesforce_account(additional_fields: {}) }.merge(additional_fields)) end - def create_salesforce_contact(contact_email: sf_randomized_id, static_id: true) + def create_salesforce_contact(contact_email:, static_id: true) _ = sf.create!(SF_CONTACT, { LastName: 'Bianco', - Email: static_id ? create_static_email(email: contact_email) : create_random_email, + Email: static_id && contact_email.present? ? create_static_email(email: contact_email) : create_random_email, }) end @@ -390,7 +390,7 @@ def create_order_from_cpq_quote(sf_quote_id, additional_order_fields: {}) sf_order end - def create_salesforce_quote(sf_pricebook_id: nil, sf_account_id:, currency_iso_code: nil, contact_email: sf_randomized_id, additional_quote_fields: {}) + def create_salesforce_quote(sf_pricebook_id: nil, sf_account_id:, currency_iso_code: nil, contact_email:, additional_quote_fields: {}) sf_pricebook_id ||= default_pricebook_id opportunity_id = create_salesforce_opportunity(sf_account_id: sf_account_id, currency_iso_code: currency_iso_code) contact_id = create_salesforce_contact(contact_email: contact_email) diff --git a/lib/stripe-force/translate/utilities/salesforce_util.rb b/lib/stripe-force/translate/utilities/salesforce_util.rb index 5638b8b8d4..755fde2dfc 100644 --- a/lib/stripe-force/translate/utilities/salesforce_util.rb +++ b/lib/stripe-force/translate/utilities/salesforce_util.rb @@ -350,7 +350,7 @@ def self.normalize_sf_order_amendment_end_date(mapper:, sf_order_amendment:, sf_ log.error 'amendment order does not start on the same day of month as the initial order', initial_order_start_date: sf_initial_order_start_date, amendment_order_start_date: amendment_start_date - raise StripeForce::Errors::RawUserError.new("Amendment orders must start on the same day of month as the initial order.") + raise StripeForce::Errors::RawUserError.new("Amendment orders must start on the same day of month as the initial order. Enable feature non-anniversary amendments to sync amendments on any day of the month.") end amendment_end_date = get_non_anniversary_amendment_order_end_date(mapper, sf_order_amendment) @@ -412,6 +412,11 @@ def self.calculate_month_plus_day_price_multiplier(whole_months:, partial_month_ (whole_months + (BigDecimal(partial_month_days) / (BigDecimal(DAYS_IN_YEAR) / BigDecimal(MONTHS_IN_YEAR)))) / BigDecimal(product_subscription_term) end + sig { params(sf_order_items: T::Array[T.untyped]).returns(T::Boolean) } + def sf_order_contains_mdq_order_items(sf_order_items) + sf_order_items.any? {|sf_order_item| sf_order_item[CPQ_ORDER_ITEM_PRICE_DIMENSION_ID].present? } + end + sig { params(user: StripeForce::User, sf_order_amendment: Restforce::SObject).returns(T.nilable(String)) } def self.get_effective_termination_date(user, sf_order_amendment) # Salesforce CPQ generates an amendment opportunity with a close date equal to your contract’s start date which diff --git a/test/integration/amendments/test_proration_amendments.rb b/test/integration/amendments/test_proration_amendments.rb index fc98ce5809..453eadbf4b 100644 --- a/test/integration/amendments/test_proration_amendments.rb +++ b/test/integration/amendments/test_proration_amendments.rb @@ -1797,7 +1797,7 @@ class Critic::ProratedAmendmentTranslation < Critic::OrderAmendmentFunctionalTes sf_order = create_subscription_order( sf_product_id: sf_product_id, - contact_email: "semi_annual_day_proration", + contact_email: "semi_annual_day_proration_2", additional_fields: { CPQ_QUOTE_SUBSCRIPTION_START_DATE => format_date_for_salesforce(initial_order_start_date), CPQ_QUOTE_SUBSCRIPTION_TERM => contract_term, diff --git a/test/integration/test_one_time_order.rb b/test/integration/test_one_time_order.rb index 024f85be7f..76a1184a54 100644 --- a/test/integration/test_one_time_order.rb +++ b/test/integration/test_one_time_order.rb @@ -52,11 +52,9 @@ class Critic::OneTimeOrderTranslation < Critic::VCRTest invoice = Stripe::Invoice.retrieve(stripe_invoice_id, @user.stripe_credentials) customer = Stripe::Customer.retrieve(invoice.customer, @user.stripe_credentials) - refute_empty(customer.email) assert_equal(1, invoice.lines.count) - line = invoice.lines.first assert_equal("one_time", line.price.type) end diff --git a/test/integration/test_translate_order.rb b/test/integration/test_translate_order.rb index e4c663c2ab..3a69cb9c12 100644 --- a/test/integration/test_translate_order.rb +++ b/test/integration/test_translate_order.rb @@ -42,7 +42,6 @@ class Critic::OrderTranslation < Critic::VCRTest # TODO add `refresh` to salesforce library sf_order = sf.find(SF_ORDER, sf_order.Id) - sf_product = sf.find(SF_PRODUCT, sf_product_id) sf_pricebook_entry = sf.find(SF_PRICEBOOK_ENTRY, sf_pricebook_entry_id) stripe_id = sf_order[prefixed_stripe_field(GENERIC_STRIPE_ID)] diff --git a/test/integration/translate/test_mdq_products.rb b/test/integration/translate/test_mdq_products.rb new file mode 100644 index 0000000000..94e71bfd58 --- /dev/null +++ b/test/integration/translate/test_mdq_products.rb @@ -0,0 +1,295 @@ +# frozen_string_literal: true +# typed: true + +require_relative '../../test_helper' + +class Critic::ProductTranslation < Critic::VCRTest + before do + set_cassette_dir(__FILE__) + Timecop.freeze(VCR.current_cassette.originally_recorded_at || now_time) + + @user = make_user(save: true) + @user.enable_feature(FeatureFlags::COUPONS) + end + + describe 'mdq products' do + it 'sync a salesforce order with a mdq licensed product' do + # setup + contract_term = 36 + initial_order_start_date = now_time + initial_order_end_date = initial_order_start_date + contract_term.months + + sf_account_id = create_salesforce_account + quote_id = create_salesforce_quote( + sf_account_id: sf_account_id, + contact_email: "order_with_mdq_licensed_product_4", + additional_quote_fields: { + CPQ_QUOTE_SUBSCRIPTION_START_DATE => format_date_for_salesforce(initial_order_start_date), + CPQ_QUOTE_SUBSCRIPTION_TERM => contract_term, + } + ) + + # create a mdq product + segmented_product_id = create_salesforce_cpq_segmented_product(additional_price_dimension_fields: {CPQ_PRICE_DIMENSION_TYPE => CPQPriceDimensionTypeOptions::YEAR.serialize}) + # add mdq product to quote + quote_with_product = add_product_to_cpq_quote(quote_id, sf_product_id: segmented_product_id) + + numnber_of_segments = contract_term / MONTHS_IN_YEAR + assert_equal(numnber_of_segments, quote_with_product["lineItems"].count) + + quote_id = calculate_and_save_cpq_quote(quote_with_product) + + # create and translate order + sf_order = create_order_from_cpq_quote(quote_id) + sf_order_items = sf_get_related(sf_order, SF_ORDER_ITEM) + + StripeForce::Translate.perform_inline(@user, sf_order.Id) + sf_order.refresh + + stripe_id = sf_order[prefixed_stripe_field(GENERIC_STRIPE_ID)] + subscription_schedule = Stripe::SubscriptionSchedule.retrieve(stripe_id, @user.stripe_credentials) + assert_equal(sf_order.Id, subscription_schedule.metadata['salesforce_order_id']) + + assert_equal(3, subscription_schedule.phases.count) + + subscription_schedule.phases.each_with_index do |phase, index| + assert_equal(1, phase.items.count) + assert_equal(0, phase.add_invoice_items.count) + item = T.must(phase.items.first) + assert_equal(1, item[:quantity]) + + # check that the same order item was added to the correct phase + order_item = T.must(sf_order_items.detect {|i| i.Id == item.metadata['salesforce_order_item_id'] }) + assert_equal(order_item[CPQ_ORDER_ITEM_SEGMENT_INDEX], index + 1) + end + + # sanity check the phase durations + first_phase = T.must(subscription_schedule.phases.first) + second_phase = T.must(subscription_schedule.phases.second) + + assert_equal(first_phase.start_date.to_i, initial_order_start_date.to_i) + assert_equal(first_phase.end_date.to_i, second_phase.start_date.to_i) + + third_phase = T.must(subscription_schedule.phases.third) + assert_equal(third_phase.end_date.to_i, initial_order_end_date.utc.beginning_of_day.to_i) + end + + it 'sync a salesforce order with two mdq products and non-segmented product' do + # setup + contract_term = 24 + initial_order_start_date = now_time + initial_order_end_date = initial_order_start_date + contract_term.months + + sf_account_id = create_salesforce_account + quote_id = create_salesforce_quote( + sf_account_id: sf_account_id, + contact_email: "order_with_mdq_and_non_mdq_product_2", + additional_quote_fields: { + CPQ_QUOTE_SUBSCRIPTION_START_DATE => format_date_for_salesforce(initial_order_start_date), + CPQ_QUOTE_SUBSCRIPTION_TERM => contract_term, + } + ) + + # create a mdq licensed and metered product + segmented_licensed_product = create_salesforce_cpq_segmented_product(additional_price_dimension_fields: {CPQ_PRICE_DIMENSION_TYPE => CPQPriceDimensionTypeOptions::YEAR.serialize}) + segmented_metered_product = create_salesforce_cpq_segmented_product( + additional_product_fields: {CPQ_PRODUCT_BILLING_TYPE => CPQProductBillingTypeOptions::ARREARS.serialize}, + additional_price_dimension_fields: {CPQ_PRICE_DIMENSION_TYPE => CPQPriceDimensionTypeOptions::YEAR.serialize}) + + # add both mdq products to quote + quote_with_product = add_product_to_cpq_quote(quote_id, sf_product_id: segmented_licensed_product) + calculate_and_save_cpq_quote(quote_with_product) + + quote_with_product = add_product_to_cpq_quote(quote_id, sf_product_id: segmented_metered_product) + quote_id = calculate_and_save_cpq_quote(quote_with_product) + + # add a non segmented metered product to quote + sf_product_id, _sf_pricebook_entry_id = salesforce_recurring_metered_produce_with_price + quote_with_product = add_product_to_cpq_quote(quote_id, sf_product_id: sf_product_id) + quote_id = calculate_and_save_cpq_quote(quote_with_product) + + # three products and two products with two segments + assert_equal(5, quote_with_product["lineItems"].count) + + # create and translate order + sf_order = create_order_from_cpq_quote(quote_id) + + StripeForce::Translate.perform_inline(@user, sf_order.Id) + sf_order.refresh + + stripe_id = sf_order[prefixed_stripe_field(GENERIC_STRIPE_ID)] + subscription_schedule = Stripe::SubscriptionSchedule.retrieve(stripe_id, @user.stripe_credentials) + + assert_equal(2, subscription_schedule.phases.count) + subscription_schedule.phases.each do |phase| + assert_equal(3, phase.items.count) + assert_equal(0, phase.add_invoice_items.count) + + items = phase.items.filter {|i| i[:quantity].present? } + assert_equal(1, items.count) + assert_equal(1, T.must(items.first)[:quantity]) + end + + first_phase = T.must(subscription_schedule.phases.first) + second_phase = T.must(subscription_schedule.phases.second) + + assert_equal(initial_order_start_date.to_i, first_phase.start_date.to_i) + assert_equal(first_phase.end_date.to_i, second_phase.start_date.to_i) + + assert_equal((initial_order_start_date + 1.year).to_i, second_phase.start_date.to_i) + assert_equal(second_phase.end_date.to_i, initial_order_end_date.to_i) + end + + it 'sync a salesforce order with prebilling and mdq products' do + # prebill one year of an annually billed two year subscription + start_date = now_time + 3.months + subscription_term = 24 + end_date = start_date + subscription_term.months + prebill_iterations = 3 + + @user.field_defaults = { + "subscription_schedule" => { + "prebilling.iterations" => prebill_iterations, + }, + } + @user.save + + sf_account_id = create_salesforce_account + quote_id = create_salesforce_quote( + sf_account_id: sf_account_id, + contact_email: "order_with_mdq_licensed_product_and_prebilling_1", + additional_quote_fields: { + CPQ_QUOTE_SUBSCRIPTION_START_DATE => format_date_for_salesforce(start_date), + CPQ_QUOTE_SUBSCRIPTION_TERM => subscription_term, + } + ) + + # create a mdq licensed product for $120 every quarter + segmented_licensed_product = create_salesforce_cpq_segmented_product( + additional_product_fields: {CPQ_QUOTE_BILLING_FREQUENCY => CPQBillingFrequencyOptions::QUARTERLY.serialize}, + additional_price_dimension_fields: {CPQ_PRICE_DIMENSION_TYPE => CPQPriceDimensionTypeOptions::YEAR.serialize}) + + # add product to quote + quote_with_product = add_product_to_cpq_quote(quote_id, sf_product_id: segmented_licensed_product) + calculate_and_save_cpq_quote(quote_with_product) + + # one product with two segments + assert_equal(2, quote_with_product["lineItems"].count) + + # create and translate order + sf_order = create_order_from_cpq_quote(quote_id) + StripeForce::Translate.perform_inline(@user, sf_order.Id) + sf_order.refresh + + stripe_id = sf_order[prefixed_stripe_field(GENERIC_STRIPE_ID)] + subscription_schedule = Stripe::SubscriptionSchedule.retrieve(stripe_id, @user.stripe_credentials) + + # ensure a prebilling invoice has been created + first_phase = T.must(subscription_schedule.phases.first) + second_phase = T.must(subscription_schedule.phases.second) + + # we are essentially prebilling for the first phase / segment + assert_equal(start_date.to_i, first_phase.start_date.to_i) + assert_equal(first_phase.start_date.to_i, subscription_schedule.prebilling.period_start) + + assert_equal((start_date + 1.year).to_i, second_phase.start_date.to_i) + # prebilling 3 quarters + assert_equal((start_date + (3 * 3).months).utc.beginning_of_day.to_i, subscription_schedule.prebilling.period_end) + assert_equal(end_date.to_i, second_phase.end_date.to_i) + + invoice = Stripe::Invoice.retrieve(subscription_schedule.prebilling.invoice, @user.stripe_credentials) + # one line per pre-billed period + assert_equal(prebill_iterations, invoice.lines.data.length) + assert_equal((TEST_DEFAULT_PRICE / 4) * prebill_iterations, invoice.total) + end + + it 'sync a salesforce order with a mdq with variable discounts' do + # prebill one year of an annually billed two year subscription + start_date = now_time + subscription_term = 24 + + sf_account_id = create_salesforce_account + quote_id = create_salesforce_quote( + sf_account_id: sf_account_id, + contact_email: "order_with_mdq_licensed_product_and_discounts_2", + additional_quote_fields: { + CPQ_QUOTE_SUBSCRIPTION_START_DATE => format_date_for_salesforce(start_date), + CPQ_QUOTE_SUBSCRIPTION_TERM => subscription_term, + } + ) + + # create a mdq licensed product + segmented_licensed_product = create_salesforce_cpq_segmented_product(additional_price_dimension_fields: {CPQ_PRICE_DIMENSION_TYPE => CPQPriceDimensionTypeOptions::YEAR.serialize}) + + # add product to quote + quote_with_product = add_product_to_cpq_quote(quote_id, sf_product_id: segmented_licensed_product) + calculate_and_save_cpq_quote(quote_with_product) + + # one product with two segments + assert_equal(2, quote_with_product["lineItems"].count) + + # retrieve the quote line + quote_lines = sf_get_related(quote_id, CPQ_QUOTE_LINE) + assert_equal(2, quote_lines.size) + quote_line_id = quote_lines.first.Id + + # create two coupons and attach one to the quote and the other to the quote line + sf_percent_off_coupon_id = create_salesforce_stripe_coupon(additional_fields: { + SalesforceStripeCouponFields::NAME => 'Twenty-five percent off coupon', + SalesforceStripeCouponFields::PERCENT_OFF => 25, + }) + sf_amount_off_coupon_id = create_salesforce_stripe_coupon(additional_fields: { + SalesforceStripeCouponFields::NAME => '$10 off coupon', + SalesforceStripeCouponFields::AMOUNT_OFF => 10, + }) + + # create the quote line coupon association object to map the coupons to the quote line + create_salesforce_stripe_coupon_quote_line_association(sf_quote_line_id: quote_line_id, sf_stripe_coupon_id: sf_percent_off_coupon_id) + # create the quote coupon association object to map the coupons to the quote + create_salesforce_stripe_coupon_quote_association(sf_quote_id: quote_id, sf_stripe_coupon_id: sf_amount_off_coupon_id) + + # create and translate order + sf_order = create_order_from_cpq_quote(quote_id) + StripeForce::Translate.perform_inline(@user, sf_order.Id) + sf_order.refresh + + stripe_id = sf_order[prefixed_stripe_field(GENERIC_STRIPE_ID)] + subscription_schedule = Stripe::SubscriptionSchedule.retrieve(stripe_id, @user.stripe_credentials) + assert_equal(2, subscription_schedule.phases.count) + + # first phase should have one item + first_phase = T.must(subscription_schedule.phases.first) + assert_equal(1, first_phase.items.count) + + # the first phase item should have one coupon + first_phase_item = T.must(first_phase.items.first) + discounts = first_phase_item.discounts + assert_equal(1, discounts.count) + + # retrieve the stripe coupon on the quote line + sf_percent_off_coupon_id = Stripe::Coupon.retrieve(T.must(discounts.first).coupon, @user.stripe_credentials) + # sanity check the stripe coupon has the right data + assert_equal(25, sf_percent_off_coupon_id.percent_off) + assert_equal("once", sf_percent_off_coupon_id.duration) + + # retrieve the stripe coupon on the quote + second_phase = T.must(subscription_schedule.phases.second) + assert_equal(1, second_phase.items.count) + + # fetch invoice and verify final amount due + sf_account = sf_get(sf_account_id) + stripe_customer_id = sf_account[prefixed_stripe_field(GENERIC_STRIPE_ID)] + invoice = Stripe::Invoice.list({customer: stripe_customer_id}, @user.stripe_credentials) + assert_equal(1, invoice.data.count) + + # expected price should equal $120 with 25% off and $10 off coupons applied + assert_equal((((TEST_DEFAULT_PRICE / 100) * 12 * 0.75) - 10) * 100, invoice.data.first.total) + end + + describe 'amending orders with mdq products' do + it 'amend the current segment of a salesforce order with a mdq product' do end + it 'amend a future segment of a salesforce order with a mdq product' do end + it 'termimnate a salesforce order with a mdq product' do end + end + end +end diff --git a/test/support/salesforce_factory.rb b/test/support/salesforce_factory.rb index de5cd2d69b..4099ffb40c 100644 --- a/test/support/salesforce_factory.rb +++ b/test/support/salesforce_factory.rb @@ -144,6 +144,23 @@ def create_salesforce_product(static_id: true, additional_fields: {}) }.merge(additional_fields)) end + def create_salesforce_cpq_segmented_product(additional_product_fields: {}, additional_price_dimension_fields: {}) + sf_product_id, _sf_pricebook_entry_id = salesforce_recurring_product_with_price(price: nil, additional_product_fields: additional_product_fields) + + if additional_product_fields[CPQ_PRODUCT_BILLING_TYPE] == CPQProductBillingTypeOptions::ARREARS.serialize + sf_product_id, _sf_pricebook_id = salesforce_recurring_metered_produce_with_price(price_in_cents: nil) + end + + # create a price dimension and link the product to it + sf.create!(CPQ_PRICE_DIMENSION, { + "Name" => "Yearly Ramp", + CPQ_PRICE_DIMENSION_TYPE => CPQPriceDimensionTypeOptions::YEAR.serialize, + CPQ_QUOTE_LINE_PRODUCT => sf_product_id, + }.merge(additional_price_dimension_fields)) + + sf_product_id + end + def create_salesforce_stripe_coupon_quote_association(sf_quote_id:, sf_stripe_coupon_id:) sf_stripe_coupon_id ||= create_salesforce_stripe_coupon @@ -374,7 +391,7 @@ def create_order_from_cpq_quote(sf_quote_id) sf_order end - def create_salesforce_quote(sf_pricebook_id: nil, sf_account_id:, currency_iso_code: nil, contact_email: sf_randomized_id, additional_quote_fields: {}) + def create_salesforce_quote(sf_pricebook_id: nil, sf_account_id:, currency_iso_code: nil, contact_email: nil, additional_quote_fields: {}) sf_pricebook_id ||= default_pricebook_id opportunity_id = create_salesforce_opportunity(sf_account_id: sf_account_id, currency_iso_code: currency_iso_code) contact_id = create_salesforce_contact(contact_email: contact_email) @@ -386,6 +403,7 @@ def create_salesforce_quote(sf_pricebook_id: nil, sf_account_id:, currency_iso_c CPQ_QUOTE_PRIMARY_CONTACT => contact_id, CPQ_QUOTE_PRICEBOOK => sf_pricebook_id, }.merge(additional_quote_fields)) + quote_id end # https://github.com/sseixas/CPQ-JS diff --git a/test/vcr_cassettes/integration/amendments/test_proration_amendments/translates_non-anniversary_amendment_order_billed_quarterly_with_day_prorations_enabled.yml b/test/vcr_cassettes/integration/amendments/test_proration_amendments/translates_non-anniversary_amendment_order_billed_quarterly_with_day_prorations_enabled.yml index fe94c384f8..06162c501f 100644 --- a/test/vcr_cassettes/integration/amendments/test_proration_amendments/translates_non-anniversary_amendment_order_billed_quarterly_with_day_prorations_enabled.yml +++ b/test/vcr_cassettes/integration/amendments/test_proration_amendments/translates_non-anniversary_amendment_order_billed_quarterly_with_day_prorations_enabled.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-03 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-08-29 00:00:00 UTC","IsActive":true,"Description":"A great description","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__SubscriptionPricing__c":"Fixed Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__SubscriptionTerm__c":null,"SBQQ__BillingFrequency__c":"Quarterly"}' headers: @@ -25,12 +25,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 06:31:17 GMT + - Tue, 29 Aug 2023 18:36:17 GMT Set-Cookie: - - BrowserId=WilA0THHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:17 + - BrowserId=8PbVHkaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -43,9 +43,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9823/5000000 + - api-usage=6619/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK" + - "/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD" Content-Type: - application/json;charset=UTF-8 Vary: @@ -54,11 +54,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AtDsAAK","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"id":"01tDE00000IIaraYAD","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:36:17 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -77,12 +77,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:18 GMT + - Tue, 29 Aug 2023 18:36:17 GMT Set-Cookie: - - BrowserId=WpN0bzHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:18 + - BrowserId=8SCkUEaaEe6U0fN8rRY3OQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -95,7 +95,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9824/5000000 + - api-usage=6620/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -104,14 +104,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:17 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AtDsAAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01sDE000008q9JUYAY","Product2Id":"01tDE00000IIaraYAD","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -129,12 +129,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 06:31:18 GMT + - Tue, 29 Aug 2023 18:36:18 GMT Set-Cookie: - - BrowserId=WtIELzHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:18 + - BrowserId=8TmptUaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -147,9 +147,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9841/5000000 + - api-usage=6619/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IskDGAAZ" + - "/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM6YAL" Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,11 +158,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000IskDGAAZ","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"id":"01uDE00000KVlM6YAL","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:36:18 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -181,12 +181,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:19 GMT + - Tue, 29 Aug 2023 18:36:18 GMT Set-Cookie: - - BrowserId=Ww_3vjHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:19 + - BrowserId=8VlAj0aaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -199,7 +199,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9852/5000000 + - api-usage=6619/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -208,14 +208,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:18 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account body: encoding: UTF-8 - string: '{"Name":"REST Account 2023-08-03 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-08-29 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -233,12 +233,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 06:31:19 GMT + - Tue, 29 Aug 2023 18:36:18 GMT Set-Cookie: - - BrowserId=W0VfjzHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:19 + - BrowserId=8W_7-EaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -251,9 +251,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9842/5000000 + - api-usage=6620/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2" + - "/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG" Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,11 +262,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iaRJWAA2","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"id":"001DE000036VQjvYAG","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:36:18 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -285,12 +285,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:20 GMT + - Tue, 29 Aug 2023 18:36:18 GMT Set-Cookie: - - BrowserId=W6DGLjHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:20 + - BrowserId=8aBbOkaaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -303,7 +303,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9853/5000000 + - api-usage=6619/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -312,14 +312,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:18 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-03 00:00:00 UTC","CloseDate":"2023-08-03","StageName":"Closed/Won","AccountId":"0017e00001iaRJWAA2"}' + string: '{"Name":"REST Opportunity 2023-08-29 00:00:00 UTC","CloseDate":"2023-08-29","StageName":"Closed/Won","AccountId":"001DE000036VQjvYAG"}' headers: User-Agent: - Faraday v2.4.0 @@ -337,12 +337,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 06:31:20 GMT + - Tue, 29 Aug 2023 18:36:18 GMT Set-Cookie: - - BrowserId=W9YuCTHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:20 + - BrowserId=8bwgIkaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -355,9 +355,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9843/5000000 + - api-usage=6622/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD" + - "/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0" Content-Type: - application/json;charset=UTF-8 Vary: @@ -366,11 +366,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000OCuylAAD","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"id":"006DE00000wQlANYA0","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:36:19 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"quarterly_day_proration@example.com"}' @@ -391,12 +391,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 06:31:20 GMT + - Tue, 29 Aug 2023 18:36:19 GMT Set-Cookie: - - BrowserId=XCOyFTHHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:20 + - BrowserId=8fGIf0aaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -409,9 +409,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9839/5000000 + - api-usage=6620/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jIBkVAAW" + - "/services/data/v58.0/sobjects/Contact/003DE00002WlR5IYAV" Content-Type: - application/json;charset=UTF-8 Vary: @@ -420,14 +420,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jIBkVAAW","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"id":"003DE00002WlR5IYAV","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:36:19 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c body: encoding: UTF-8 - string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0067e00000OCuylAAD","SBQQ__PrimaryContact__c":"0037e00001jIBkVAAW","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-03","SBQQ__SubscriptionTerm__c":24}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"006DE00000wQlANYA0","SBQQ__PrimaryContact__c":"003DE00002WlR5IYAV","SBQQ__PricebookId__c":"01sDE000008q9JUYAY","SBQQ__StartDate__c":"2023-08-29","SBQQ__SubscriptionTerm__c":24}' headers: User-Agent: - Faraday v2.4.0 @@ -445,12 +445,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 06:31:21 GMT + - Tue, 29 Aug 2023 18:36:19 GMT Set-Cookie: - - BrowserId=XHzOfDHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:21 + - BrowserId=8iEjjEaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -463,9 +463,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9854/5000000 + - api-usage=6623/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD" Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDKnFAAX","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"id":"a0zDE00000LMv18YAD","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:36:20 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:23 GMT + - Tue, 29 Aug 2023 18:36:20 GMT Set-Cookie: - - BrowserId=XYjAUjHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:23 + - BrowserId=8oJWUkaaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -515,7 +515,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9841/5000000 + - api-usage=6620/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -524,11 +524,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:20 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDKnFAAX + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0zDE00000LMv18YAD body: encoding: US-ASCII string: '' @@ -547,12 +547,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:23 GMT + - Tue, 29 Aug 2023 18:36:20 GMT Set-Cookie: - - BrowserId=Xb8RwDHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:23 + - BrowserId=8plgzUaaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -572,17 +572,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX\"},\"Id\":\"a0z7e00000BDKnFAAX\",\"Name\":\"Q-01350\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD\"},\"Id\":\"a0zDE00000LMv18YAD\",\"Name\":\"Q-00126\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuylAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD\"},\"Id\":\"0067e00000OCuylAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnFAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlANYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0\"},\"Id\":\"006DE00000wQlANYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv18YAD\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:36:20 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AtDsAAK + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01tDE00000IIaraYAD body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01sDE000008q9JUYAY\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -600,12 +600,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:24 GMT + - Tue, 29 Aug 2023 18:36:21 GMT Set-Cookie: - - BrowserId=XoUg5DHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:24 + - BrowserId=8vnQYkaaEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -623,23 +623,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One - per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IskDGAAZ\"},\"Product2Id\":\"01t7e000009AtDsAAK\",\"Id\":\"01u7e00000IskDGAAZ\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM6YAL\"},\"Product2Id\":\"01tDE00000IIaraYAD\",\"Id\":\"01uDE00000KVlM6YAL\",\"Pricebook2Id\":\"01sDE000008q9JUYAY\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Tue, 29 Aug 2023 18:36:21 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder body: encoding: UTF-8 - string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX\"},\"Id\":\"a0z7e00000BDKnFAAX\",\"Name\":\"Q-01350\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD\"},\"Id\":\"a0zDE00000LMv18YAD\",\"Name\":\"Q-00126\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuylAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD\"},\"Id\":\"0067e00000OCuylAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnFAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlANYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0\"},\"Id\":\"006DE00000wQlANYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv18YAD\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One - per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IskDGAAZ\"},\"Product2Id\":\"01t7e000009AtDsAAK\",\"Id\":\"01u7e00000IskDGAAZ\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM6YAL\"},\"Product2Id\":\"01tDE00000IIaraYAD\",\"Id\":\"01uDE00000KVlM6YAL\",\"Pricebook2Id\":\"01sDE000008q9JUYAY\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -657,12 +657,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:25 GMT + - Tue, 29 Aug 2023 18:36:21 GMT Set-Cookie: - - BrowserId=XxHQ7THHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:25 + - BrowserId=80uZxUaaEe6U0fN8rRY3OQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -680,28 +680,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX\"},\"Id\":\"a0z7e00000BDKnFAAX\",\"Name\":\"Q-01350\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD\"},\"Id\":\"a0zDE00000LMv18YAD\",\"Name\":\"Q-00126\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuylAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD\"},\"Id\":\"0067e00000OCuylAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnFAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":240.00,\"netNonSegmentTotal\":240.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKnFAAX\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IskDGAAZ\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0002988\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":240.00,\"SBQQ__NetTotal__c\":240.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlANYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0\"},\"Id\":\"006DE00000wQlANYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv18YAD\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":240.00,\"netNonSegmentTotal\":240.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv18YAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM6YAL\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000322\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":240.00,\"SBQQ__NetTotal__c\":240.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:36:22 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator body: encoding: UTF-8 - string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX\"},\"Id\":\"a0z7e00000BDKnFAAX\",\"Name\":\"Q-01350\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD\"},\"Id\":\"a0zDE00000LMv18YAD\",\"Name\":\"Q-00126\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuylAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD\"},\"Id\":\"0067e00000OCuylAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnFAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":240.0,\"netNonSegmentTotal\":240.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKnFAAX\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IskDGAAZ\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0002988\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":240.0,\"SBQQ__NetTotal__c\":240.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlANYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0\"},\"Id\":\"006DE00000wQlANYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv18YAD\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":240.0,\"netNonSegmentTotal\":240.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv18YAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM6YAL\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000322\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":240.0,\"SBQQ__NetTotal__c\":240.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' headers: User-Agent: - Faraday v2.4.0 @@ -719,12 +719,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:27 GMT + - Tue, 29 Aug 2023 18:36:22 GMT Set-Cookie: - - BrowserId=YEZZZDHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:27 + - BrowserId=9BRoKEaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -742,28 +742,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX\"},\"Id\":\"a0z7e00000BDKnFAAX\",\"Name\":\"Q-01350\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":240.00,\"SBQQ__CustomerAmount__c\":240.00,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD\"},\"Id\":\"a0zDE00000LMv18YAD\",\"Name\":\"Q-00126\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":240.00,\"SBQQ__CustomerAmount__c\":240.00,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuylAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD\"},\"Id\":\"0067e00000OCuylAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnFAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":240.00,\"netNonSegmentTotal\":240.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKnFAAX\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IskDGAAZ\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0002989\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":240.00,\"SBQQ__NetTotal__c\":240.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlANYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0\"},\"Id\":\"006DE00000wQlANYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv18YAD\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":240.00,\"netNonSegmentTotal\":240.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv18YAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM6YAL\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000323\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":240.00,\"SBQQ__NetTotal__c\":240.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:36:23 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter body: encoding: UTF-8 - string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX\"},\"Id\":\"a0z7e00000BDKnFAAX\",\"Name\":\"Q-01350\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD\"},\"Id\":\"a0zDE00000LMv18YAD\",\"Name\":\"Q-00126\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuylAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD\"},\"Id\":\"0067e00000OCuylAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnFAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":240.0,\"netNonSegmentTotal\":240.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKnFAAX\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IskDGAAZ\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0002989\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":240.0,\"SBQQ__NetTotal__c\":240.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlANYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0\"},\"Id\":\"006DE00000wQlANYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv18YAD\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":240.0,\"netNonSegmentTotal\":240.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv18YAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM6YAL\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000323\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":240.0,\"SBQQ__NetTotal__c\":240.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -781,12 +781,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:29 GMT + - Tue, 29 Aug 2023 18:36:23 GMT Set-Cookie: - - BrowserId=YTiBqjHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:29 + - BrowserId=9K8hr0aaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -806,18 +806,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnFAAX\",\"AccountId\":\"0017e00001iaRJWAA2\",\"Id\":\"0067e00000OCuylAAD\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaRJWAA2\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-03 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-01350\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":24.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000OCuylAAD\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDKnFAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":240.0,\"netNonSegmentTotal\":240.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnFAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJYAA2\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__SegmentIndex__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKnFAAX\",\"SBQQ__ProratedListPrice__c\":240.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":240.0,\"Id\":\"a0v7e000008xYJYAA2\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":240.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":240.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":2.0,\"Name\":\"QL-0002989\",\"SBQQ__CustomerPrice__c\":240.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":240.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IskDGAAZ\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":240.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009AtDsAAK\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__SegmentLabel__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0\"},\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv18YAD\",\"AccountId\":\"001DE000036VQjvYAG\",\"Id\":\"006DE00000wQlANYA0\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"001DE000036VQjvYAG\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-08-29 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00126\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":24.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"006DE00000wQlANYA0\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0zDE00000LMv18YAD\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":240.0,\"netNonSegmentTotal\":240.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv18YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqTYAV\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__SegmentIndex__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv18YAD\",\"SBQQ__ProratedListPrice__c\":240.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":240.0,\"Id\":\"a0vDE00000K9OqTYAV\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":240.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":240.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":2.0,\"Name\":\"QL-0000323\",\"SBQQ__CustomerPrice__c\":240.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":240.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM6YAL\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":240.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01tDE00000IIaraYAD\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__SegmentLabel__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:36:24 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -838,12 +838,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:31:30 GMT + - Tue, 29 Aug 2023 18:36:24 GMT Set-Cookie: - - BrowserId=YcvnhDHHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:30 + - BrowserId=9PJFGUaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -858,14 +858,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9841/5000000 + - api-usage=6621/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:25 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX/SBQQ__Orders__r + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -884,12 +884,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:32 GMT + - Tue, 29 Aug 2023 18:36:25 GMT Set-Cookie: - - BrowserId=YxYauDHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:32 + - BrowserId=9bISfEaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -902,7 +902,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9844/5000000 + - api-usage=6620/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -911,12 +911,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nRT3AAM"},"Id":"8017e000000nRT3AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuylAAD","EffectiveDate":"2023-08-03","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00001431","TotalAmount":240.0,"CreatedDate":"2023-08-03T06:31:31.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:31.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:31:31.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/801DE0000048GS3YAM"},"Id":"801DE0000048GS3YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlANYA0","EffectiveDate":"2023-08-29","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00000225","TotalAmount":240.0,"CreatedDate":"2023-08-29T18:36:24.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:25.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:25.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:25 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -937,12 +937,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:31:32 GMT + - Tue, 29 Aug 2023 18:36:25 GMT Set-Cookie: - - BrowserId=Y1Q1NzHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:32 + - BrowserId=9cxRkEaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -957,14 +957,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9845/5000000 + - api-usage=6620/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:26 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM body: encoding: US-ASCII string: '' @@ -983,12 +983,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:33 GMT + - Tue, 29 Aug 2023 18:36:26 GMT Set-Cookie: - - BrowserId=Y9tmvDHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:33 + - BrowserId=9hgAlUaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1001,9 +1001,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9857/5000000 + - api-usage=6621/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:31:33 GMT + - Tue, 29 Aug 2023 18:36:25 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1012,12 +1012,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM"},"Id":"8017e000000nRT3AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuylAAD","EffectiveDate":"2023-08-03","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T06:31:33.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001431","TotalAmount":240.0,"CreatedDate":"2023-08-03T06:31:31.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:31:33.000+0000","LastViewedDate":"2023-08-03T06:31:32.000+0000","LastReferencedDate":"2023-08-03T06:31:32.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM"},"Id":"801DE0000048GS3YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlANYA0","EffectiveDate":"2023-08-29","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:36:25.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000225","TotalAmount":240.0,"CreatedDate":"2023-08-29T18:36:24.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:25.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:25.000+0000","LastViewedDate":"2023-08-29T18:36:25.000+0000","LastReferencedDate":"2023-08-29T18:36:25.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Tue, 29 Aug 2023 18:36:26 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM body: encoding: US-ASCII string: '' @@ -1036,12 +1036,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:34 GMT + - Tue, 29 Aug 2023 18:36:26 GMT Set-Cookie: - - BrowserId=ZBZM5THHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:34 + - BrowserId=9jSJJEaaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1054,9 +1054,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9846/5000000 + - api-usage=6620/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:31:33 GMT + - Tue, 29 Aug 2023 18:36:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1065,15 +1065,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM"},"Id":"8017e000000nRT3AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuylAAD","EffectiveDate":"2023-08-03","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T06:31:33.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001431","TotalAmount":240.0,"CreatedDate":"2023-08-03T06:31:31.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:31:33.000+0000","LastViewedDate":"2023-08-03T06:31:33.000+0000","LastReferencedDate":"2023-08-03T06:31:33.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM"},"Id":"801DE0000048GS3YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlANYA0","EffectiveDate":"2023-08-29","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:36:25.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000225","TotalAmount":240.0,"CreatedDate":"2023-08-29T18:36:24.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:26.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:26.000+0000","LastViewedDate":"2023-08-29T18:36:26.000+0000","LastReferencedDate":"2023-08-29T18:36:26.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Tue, 29 Aug 2023 18:36:26 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nRT3AAM"]}' + string: '{"order_ids":["801DE0000048GS3YAM"]}' headers: User-Agent: - Faraday v2.4.0 @@ -1091,12 +1092,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:34 GMT + - Tue, 29 Aug 2023 18:36:26 GMT Set-Cookie: - - BrowserId=ZEzGSTHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:34 + - BrowserId=9k0aLUaaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1116,26 +1117,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jIBkVAAW"},"Id":"0037e00001jIBkVAAW","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"quarterly_day_proration@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:21.000+0000","LastViewedDate":"2023-08-03T06:31:21.000+0000","LastReferencedDate":"2023-08-03T06:31:21.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jIBkVAAW","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD"},"Id":"0067e00000OCuylAAD","IsDeleted":false,"AccountId":"0017e00001iaRJWAA2","IsPrivate":false,"Name":"REST - Opportunity 2023-08-03 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-03","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:20.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:22.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-03T06:31:20.000+0000","LastReferencedDate":"2023-08-03T06:31:20.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKnFAAX","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2"},"Id":"0017e00001iaRJWAA2","IsDeleted":false,"Name":"REST - Account 2023-08-03 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaRJWAA2","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:19.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:19.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:19.000+0000","LastViewedDate":"2023-08-03T06:31:19.000+0000","LastReferencedDate":"2023-08-03T06:31:19.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["0017e00001iaRJWAA2"],"Opportunities":["0067e00000OCuylAAD"],"Contacts":["0037e00001jIBkVAAW"],"SBQQ__RegularAmount__c":240.00,"SBQQ__NetAmount__c":240.00,"SBQQ__ListAmount__c":240.00,"SBQQ__CustomerAmount__c":240.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-01","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":true,"SBQQ__Type__c":"Quote","SBQQ__SubscriptionTerm__c":24,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-08-03","SBQQ__ShippingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jIBkVAAW","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0067e00000OCuylAAD","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-03T06:31:30.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/003DE00002WlR5IYAV"},"Id":"003DE00002WlR5IYAV","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"quarterly_day_proration@example.com","OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:19.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:19.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:19.000+0000","LastViewedDate":"2023-08-29T18:36:19.000+0000","LastReferencedDate":"2023-08-29T18:36:19.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/003DE00002WlR5IYAV","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0"},"Id":"006DE00000wQlANYA0","IsDeleted":false,"AccountId":"001DE000036VQjvYAG","IsPrivate":false,"Name":"REST + Opportunity 2023-08-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:19.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:20.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:20.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-08-29T18:36:19.000+0000","LastReferencedDate":"2023-08-29T18:36:19.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0zDE00000LMv18YAD","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG"},"Id":"001DE000036VQjvYAG","IsDeleted":false,"Name":"REST + Account 2023-08-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/001DE000036VQjvYAG","OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:18.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:18.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:18.000+0000","LastViewedDate":"2023-08-29T18:36:18.000+0000","LastReferencedDate":"2023-08-29T18:36:18.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["001DE000036VQjvYAG"],"Opportunities":["006DE00000wQlANYA0"],"Contacts":["003DE00002WlR5IYAV"],"SBQQ__RegularAmount__c":240.00,"SBQQ__NetAmount__c":240.00,"SBQQ__ListAmount__c":240.00,"SBQQ__CustomerAmount__c":240.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-28","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":true,"SBQQ__Type__c":"Quote","SBQQ__SubscriptionTerm__c":24,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-08-29","SBQQ__ShippingName__c":"REST + Account 2023-08-29 00:00:00 UTC","SBQQ__SalesRep__c":"005DE00000JiwzhYAB","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"003DE00002WlR5IYAV","SBQQ__PricebookId__c":"01sDE000008q9JUYAY","SBQQ__PriceBook__c":"01sDE000008q9JUYAY","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"006DE00000wQlANYA0","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-29T18:36:24.000+0000","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__Account__c":"0017e00001iaRJWAA2","LastReferencedDate":"2023-08-03T06:31:30.000+0000","LastViewedDate":"2023-08-03T06:31:30.000+0000","SystemModstamp":"2023-08-03T06:31:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:30.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:21.000+0000","Name":"Q-01350","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKnFAAX","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK"},"Id":"01t7e000009AtDsAAK","Name":"REST - Product2 2023-08-03 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-03T06:31:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:18.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-08-29 00:00:00 UTC","SBQQ__Account__c":"001DE000036VQjvYAG","LastReferencedDate":"2023-08-29T18:36:24.000+0000","LastViewedDate":"2023-08-29T18:36:24.000+0000","SystemModstamp":"2023-08-29T18:36:24.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:24.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:19.000+0000","Name":"Q-00126","IsDeleted":false,"OwnerId":"005DE00000JiwzhYAB","Id":"a0zDE00000LMv18YAD","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD"},"Id":"01tDE00000IIaraYAD","Name":"REST + Product2 2023-08-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-08-29T18:36:17.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:17.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:18.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One per quote line","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IskDGAAZ"},"Id":"01u7e00000IskDGAAZ","Name":"REST - Product2 2023-08-03 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AtDsAAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-03T06:31:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:18.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:18.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJYAA2"},"Id":"a0v7e000008xYJYAA2","IsDeleted":false,"Name":"QL-0002990","CreatedDate":"2023-08-03T06:31:29.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:29.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:29.000+0000","SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":240.00,"SBQQ__Description__c":"A - great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":240.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":240.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IskDGAAZ","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AtDsAAK","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":240.00,"SBQQ__ProratedPrice__c":240.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":240.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":240.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-03","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":240.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":240.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":240.00,"SBQQ__PackageTotal__c":240.00,"SBQQ__PartnerTotal__c":240.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RegularTotal__c":240.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"PricebookEntries":[],"Products":["01t7e000009AtDsAAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":240.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xYJYAA2","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001462","SystemModstamp":"2023-08-03T06:31:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:33.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:31.000+0000","EndDate":"2025-08-02","ServiceDate":"2023-08-03","TotalPrice":240.00,"ListPrice":120.00,"UnitPrice":240.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IskDGAAZ","OrderId":"8017e000000nRT3AAM","IsDeleted":false,"Product2Id":"01t7e000009AtDsAAK","Id":"8027e000001bQxxAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQxxAAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000OCuylAAD"],"Accounts":["0017e00001iaRJWAA2"],"OrderItems":["8027e000001bQxxAAE"],"Quotes":["a0z7e00000BDKnFAAX"],"Opportunity":{"Id":"0067e00000OCuylAAD","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":240.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__PriceCalcStatus__c":"Queued","SBQQ__PaymentTerm__c":"Net - 30","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-03T06:31:34.000+0000","LastViewedDate":"2023-08-03T06:31:34.000+0000","SystemModstamp":"2023-08-03T06:31:33.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:33.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:31.000+0000","TotalAmount":240.00,"OrderNumber":"00001431","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-03T06:31:33.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-03","OpportunityId":"0067e00000OCuylAAD","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaRJWAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nRT3AAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM6YAL"},"Id":"01uDE00000KVlM6YAL","Name":"REST + Product2 2023-08-29 00:00:00 UTC","Pricebook2Id":"01sDE000008q9JUYAY","Product2Id":"01tDE00000IIaraYAD","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-29T18:36:18.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:18.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:18.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqTYAV"},"Id":"a0vDE00000K9OqTYAV","IsDeleted":false,"Name":"QL-0000324","CreatedDate":"2023-08-29T18:36:24.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:24.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:24.000+0000","SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":240.00,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":240.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":240.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01uDE00000KVlM6YAL","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIaraYAD","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":240.00,"SBQQ__ProratedPrice__c":240.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":240.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":240.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-29","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":240.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":240.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":240.00,"SBQQ__PackageTotal__c":240.00,"SBQQ__PartnerTotal__c":240.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RegularTotal__c":240.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"PricebookEntries":[],"Products":["01tDE00000IIaraYAD"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":240.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0vDE00000K9OqTYAV","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000134","SystemModstamp":"2023-08-29T18:36:26.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:26.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:25.000+0000","EndDate":"2025-08-28","ServiceDate":"2023-08-29","TotalPrice":240.00,"ListPrice":120.00,"UnitPrice":240.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01uDE00000KVlM6YAL","OrderId":"801DE0000048GS3YAM","IsDeleted":false,"Product2Id":"01tDE00000IIaraYAD","Id":"802DE00000Ay2bjYAB","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2bjYAB","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-08-28T07:57:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-28T07:57:21.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-28T07:57:21.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01sDE000008q9JUYAY"],"Opportunities":["006DE00000wQlANYA0"],"Accounts":["001DE000036VQjvYAG"],"OrderItems":["802DE00000Ay2bjYAB"],"Quotes":["a0zDE00000LMv18YAD"],"Opportunity":{"Id":"006DE00000wQlANYA0","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":240.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-29T18:36:26.000+0000","LastViewedDate":"2023-08-29T18:36:26.000+0000","SystemModstamp":"2023-08-29T18:36:26.000+0000","IsDeleted":false,"LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:26.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:24.000+0000","TotalAmount":240.00,"OrderNumber":"00000225","StatusCode":"Activated","ActivatedById":"005DE00000JiwzhYAB","ActivatedDate":"2023-08-29T18:36:25.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-29","OpportunityId":"006DE00000wQlANYA0","Pricebook2Id":"01sDE000008q9JUYAY","AccountId":"001DE000036VQjvYAG","OwnerId":"005DE00000JiwzhYAB","Id":"801DE0000048GS3YAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"HasOptedOutOfFax","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"DoNotCall","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ContractId","sobject_type":"Opportunity","error_message":"Field @@ -1152,10 +1154,10 @@ http_interactions: Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingAddress","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Name","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:27 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%278017e000000nRT3AAM%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%27801DE0000048GS3YAM%27%0A body: encoding: US-ASCII string: '' @@ -1174,12 +1176,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:36 GMT + - Tue, 29 Aug 2023 18:36:27 GMT Set-Cookie: - - BrowserId=ZUXMwjHHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:36 + - BrowserId=9whTvkaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1192,7 +1194,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9862/5000000 + - api-usage=6621/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1201,11 +1203,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM"},"Type":"New","OpportunityId":"0067e00000OCuylAAD","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD"},"SBQQ__AmendedContract__c":null}}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM"},"Type":"New","OpportunityId":"006DE00000wQlANYA0","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Tue, 29 Aug 2023 18:36:27 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278017e000000nRT3AAM%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%27801DE0000048GS3YAM%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -1224,12 +1226,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:36 GMT + - Tue, 29 Aug 2023 18:36:27 GMT Set-Cookie: - - BrowserId=ZYFO4THHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:36 + - BrowserId=9x-tAEaaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1242,7 +1244,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9859/5000000 + - api-usage=6621/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1251,14 +1253,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM"},"Id":"8017e000000nRT3AAM"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM"},"Id":"801DE0000048GS3YAM"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:27 GMT - request: method: post uri: https://api.stripe.com/v1/test_helpers/test_clocks body: encoding: UTF-8 - string: frozen_time=1691036770 + string: frozen_time=1693334187 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -1267,13 +1269,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - 683d8b47-4c54-4895-83f8-5342978c78e2 + - adf1ba71-e6f3-4795-a5ff-d554284ad6c2 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -1288,7 +1290,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:31:36 GMT + - Tue, 29 Aug 2023 18:36:28 GMT Content-Type: - application/json Content-Length: @@ -1307,20 +1309,28 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' Idempotency-Key: - - 683d8b47-4c54-4895-83f8-5342978c78e2 + - adf1ba71-e6f3-4795-a5ff-d554284ad6c2 Original-Request: - - req_rE8UbqL3IMg91r + - req_TI4MS8QOtpNX72 + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_rE8UbqL3IMg91r + - req_TI4MS8QOtpNX72 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '16.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -1329,22 +1339,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691036770, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693334187, "livemode": false, "name": null, "status": "ready" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:28 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-03+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iaRJWAA2&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iaRJWAA2&test_clock=clock_1Nav4OIsgf92XbAOVZX4OoU3 + string: name=REST+Account++2023-08-29+00%3A00%3A00+UTC&metadata[salesforce_account_id]=001DE000036VQjvYAG&metadata[salesforce_account_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F001DE000036VQjvYAG&test_clock=clock_1NkWm8Isgf92XbAOLatXWVjO headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -1353,15 +1363,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_rE8UbqL3IMg91r","request_duration_ms":191}}' + - '{"last_request_metrics":{"request_id":"req_TI4MS8QOtpNX72","request_duration_ms":250}}' Idempotency-Key: - - 6e093ed2-f1ba-4310-8792-749567a83826 + - 6e591743-865e-4b34-8849-b824f019e1d8 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -1376,11 +1386,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:31:37 GMT + - Tue, 29 Aug 2023 18:36:28 GMT Content-Type: - application/json Content-Length: - - '876' + - '877' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -1396,19 +1406,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 6e093ed2-f1ba-4310-8792-749567a83826 + - 6e591743-865e-4b34-8849-b824f019e1d8 Original-Request: - - req_wYWfXphN5mdan0 + - req_4Lcg5WNXl3h1pf Request-Id: - - req_wYWfXphN5mdan0 + - req_4Lcg5WNXl3h1pf Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '92.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -1417,11 +1425,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONgRawK9MZNDXo", + "id": "cus_OXc0ajKKb0ff11", "object": "customer", "address": null, "balance": 0, - "created": 1691036770, + "created": 1693334187, "currency": null, "default_currency": null, "default_source": null, @@ -1429,7 +1437,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "95A6DA24", + "invoice_prefix": "21213D18", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -1438,24 +1446,24 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaRJWAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaRJWAA2" + "salesforce_account_id": "001DE000036VQjvYAG", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjvYAG" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", + "name": "REST Account 2023-08-29 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], "shipping": null, "tax_exempt": "none", - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3" + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:28 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ONgRawK9MZNDXo"}' + string: '{"Stripe_ID__c":"cus_OXc0ajKKb0ff11"}' headers: User-Agent: - Faraday v2.4.0 @@ -1473,12 +1481,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:31:37 GMT + - Tue, 29 Aug 2023 18:36:28 GMT Set-Cookie: - - BrowserId=Zgkc3THHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:37 + - BrowserId=95d0kUaaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1493,17 +1501,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9863/5000000 + - api-usage=6622/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:28 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-03+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AtDsAAK&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AtDsAAK + string: name=REST+Product2++2023-08-29+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01tDE00000IIaraYAD&metadata[salesforce_product2_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F01tDE00000IIaraYAD headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -1512,15 +1520,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_wYWfXphN5mdan0","request_duration_ms":272}}' + - '{"last_request_metrics":{"request_id":"req_4Lcg5WNXl3h1pf","request_duration_ms":354}}' Idempotency-Key: - - 49b4bb23-34e1-4901-b00e-5362eafb81f1 + - d34f5531-b8c7-477c-9e0b-5d1dda304d43 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -1535,11 +1543,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:31:37 GMT + - Tue, 29 Aug 2023 18:36:29 GMT Content-Type: - application/json Content-Length: - - '748' + - '749' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -1555,19 +1563,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 49b4bb23-34e1-4901-b00e-5362eafb81f1 + - d34f5531-b8c7-477c-9e0b-5d1dda304d43 Original-Request: - - req_GnTiJ1WyUwlVOL + - req_MGQdgIGhvitfRV Request-Id: - - req_GnTiJ1WyUwlVOL + - req_MGQdgIGhvitfRV Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '39.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -1576,39 +1582,39 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONgR4MmTQrmCza", + "id": "prod_OXc05Om0XrosxT", "object": "product", "active": true, "attributes": [], - "created": 1691044297, + "created": 1693334189, "default_price": null, "description": "A great description", "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AtDsAAK", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AtDsAAK" + "salesforce_product2_id": "01tDE00000IIaraYAD", + "salesforce_product2_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01tDE00000IIaraYAD" }, - "name": "REST Product2 2023-08-03 00:00:00 UTC", + "name": "REST Product2 2023-08-29 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-03-000000-utc-44", + "sku": "rest-product2--2023-08-29-000000-utc-31", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691044297, + "updated": 1693334189, "url": null } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:29 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ONgR4MmTQrmCza"}' + string: '{"Stripe_ID__c":"prod_OXc05Om0XrosxT"}' headers: User-Agent: - Faraday v2.4.0 @@ -1626,12 +1632,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:31:38 GMT + - Tue, 29 Aug 2023 18:36:29 GMT Set-Cookie: - - BrowserId=ZnSH_jHHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:38 + - BrowserId=9-p2nEaaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1646,14 +1652,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9864/5000000 + - api-usage=6621/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:29 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009AtDsAAK%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIaraYAD%27%0A body: encoding: US-ASCII string: '' @@ -1672,12 +1678,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:38 GMT + - Tue, 29 Aug 2023 18:36:29 GMT Set-Cookie: - - BrowserId=Zr9NWzHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:38 + - BrowserId=-BPQP0aaEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1690,7 +1696,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9864/5000000 + - api-usage=6620/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1700,10 +1706,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:29 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009AtDsAAK%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIaraYAD%27%0A body: encoding: US-ASCII string: '' @@ -1722,12 +1728,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:39 GMT + - Tue, 29 Aug 2023 18:36:29 GMT Set-Cookie: - - BrowserId=ZvqBqTHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:39 + - BrowserId=-CvFWkaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1740,7 +1746,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9867/5000000 + - api-usage=6626/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1750,10 +1756,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:29 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD body: encoding: US-ASCII string: '' @@ -1772,12 +1778,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:39 GMT + - Tue, 29 Aug 2023 18:36:29 GMT Set-Cookie: - - BrowserId=ZzWOPzHHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:39 + - BrowserId=-EJbJ0aaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1790,9 +1796,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9865/5000000 + - api-usage=6623/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:31:38 GMT + - Tue, 29 Aug 2023 18:36:29 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1801,15 +1807,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK"},"Id":"01t7e000009AtDsAAK","Name":"REST - Product2 2023-08-03 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-03T06:31:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:38.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:38.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD"},"Id":"01tDE00000IIaraYAD","Name":"REST + Product2 2023-08-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-08-29T18:36:17.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:29.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:29.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One per quote line","SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BillingType__c":null,"SBQQ__BlockPricingField__c":"Quantity","SBQQ__ChargeType__c":null,"SBQQ__Component__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationFieldSet__c":null,"SBQQ__ConfigurationFields__c":null,"SBQQ__ConfigurationFormTitle__c":null,"SBQQ__ConfigurationType__c":null,"SBQQ__ConfigurationValidator__c":null,"SBQQ__ConfiguredCodePattern__c":null,"SBQQ__ConfiguredDescriptionPattern__c":null,"SBQQ__CostEditable__c":false,"SBQQ__CostSchedule__c":null,"SBQQ__CustomConfigurationPage__c":null,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__CustomerCommunityAvailability__c":null,"SBQQ__DefaultPricingTable__c":null,"SBQQ__DefaultQuantity__c":1.0,"SBQQ__DescriptionLocked__c":false,"SBQQ__DiscountCategory__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DynamicPricingConstraint__c":null,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionLayout__c":null,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingGuidance__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductPictureID__c":null,"SBQQ__QuantityEditable__c":true,"SBQQ__QuantityScale__c":null,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__RenewalProduct__c":null,"SBQQ__SortOrder__c":null,"SBQQ__Specifications__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_ONgR4MmTQrmCza","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONgR4MmTQrmCza"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_OXc05Om0XrosxT","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OXc05Om0XrosxT"}' + recorded_at: Tue, 29 Aug 2023 18:36:29 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQxxAAE%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2bjYAB%27%0A body: encoding: US-ASCII string: '' @@ -1828,12 +1834,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:39 GMT + - Tue, 29 Aug 2023 18:36:30 GMT Set-Cookie: - - BrowserId=Z2_Y0DHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:39 + - BrowserId=-F01nUaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1846,7 +1852,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9868/5000000 + - api-usage=6627/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1856,10 +1862,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:30 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQxxAAE%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2bjYAB%27%0A body: encoding: US-ASCII string: '' @@ -1878,12 +1884,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:40 GMT + - Tue, 29 Aug 2023 18:36:30 GMT Set-Cookie: - - BrowserId=Z6RVZjHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:40 + - BrowserId=-HOjwUaaEe6U0fN8rRY3OQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1896,7 +1902,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9860/5000000 + - api-usage=6623/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1906,10 +1912,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:30 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -1928,12 +1934,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:40 GMT + - Tue, 29 Aug 2023 18:36:30 GMT Set-Cookie: - - BrowserId=Z94DCTHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:40 + - BrowserId=-KU7SEaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1946,11 +1952,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9869/5000000 + - api-usage=6623/5000000 Etag: - - '"6de44be0--gzip"' + - '"a39f33c5--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 28 Aug 2023 14:57:37 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2253,7 +2259,8 @@ http_interactions: Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content - Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract @@ -2269,7 +2276,9 @@ http_interactions: Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract - Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -2557,9 +2566,18 @@ http_interactions: Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching - Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile - Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note @@ -2611,7 +2629,7 @@ http_interactions: Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package - License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party @@ -3307,10 +3325,10 @@ http_interactions: Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:30 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQxxAAE%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2bjYAB%27%0A body: encoding: US-ASCII string: '' @@ -3329,12 +3347,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:41 GMT + - Tue, 29 Aug 2023 18:36:32 GMT Set-Cookie: - - BrowserId=aGP8HjHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:41 + - BrowserId=-ZbuXEaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3347,7 +3365,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9861/5000000 + - api-usage=6628/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3357,13 +3375,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:32 GMT - request: method: post uri: https://api.stripe.com/v1/prices body: encoding: UTF-8 - string: currency=usd&unit_amount_decimal=3000.0&recurring[interval_count]=3&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8027e000001bQxxAAE&metadata[salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQxxAAE&product=prod_ONgR4MmTQrmCza + string: currency=usd&unit_amount_decimal=6000.0&recurring[interval_count]=3&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=802DE00000Ay2bjYAB&metadata[salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2bjYAB&product=prod_OXc05Om0XrosxT headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3372,15 +3390,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_GnTiJ1WyUwlVOL","request_duration_ms":215}}' + - '{"last_request_metrics":{"request_id":"req_MGQdgIGhvitfRV","request_duration_ms":284}}' Idempotency-Key: - - 7be263ba-1615-4bb7-9670-082b362df92c + - 5771f418-402b-44e0-a334-16f0009b46fa Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3395,11 +3413,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:31:41 GMT + - Tue, 29 Aug 2023 18:36:32 GMT Content-Type: - application/json Content-Length: - - '849' + - '850' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -3415,19 +3433,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 7be263ba-1615-4bb7-9670-082b362df92c + - 5771f418-402b-44e0-a334-16f0009b46fa Original-Request: - - req_uT81AJumd02sHD + - req_egAb0RDfjqAEKM Request-Id: - - req_uT81AJumd02sHD + - req_egAb0RDfjqAEKM Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '39.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -3436,22 +3452,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -3463,16 +3479,16 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:32 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8027e000001bQxxAAE + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2bjYAB body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1Nav4TIsgf92XbAOY99CE7pt"}' + string: '{"Stripe_ID__c":"price_1NkWmCIsgf92XbAOGw5g1sQq"}' headers: User-Agent: - Faraday v2.4.0 @@ -3490,12 +3506,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:31:42 GMT + - Tue, 29 Aug 2023 18:36:32 GMT Set-Cookie: - - BrowserId=aOG3kjHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:42 + - BrowserId=-dhkBUaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3510,14 +3526,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9865/5000000 + - api-usage=6632/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:32 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20OrderItem%0AWHERE%20OrderId%20=%20%278017e000000nRT3AAM%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20OrderItem%0AWHERE%20OrderId%20=%20%27801DE0000048GS3YAM%27%0A body: encoding: US-ASCII string: '' @@ -3536,12 +3552,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:43 GMT + - Tue, 29 Aug 2023 18:36:32 GMT Set-Cookie: - - BrowserId=abP78jHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:43 + - BrowserId=-gLPZEaaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3554,7 +3570,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9866/5000000 + - api-usage=6628/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3563,11 +3579,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQxxAAE"},"Id":"8027e000001bQxxAAE"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2bjYAB"},"Id":"802DE00000Ay2bjYAB"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:32 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8027e000001bQxxAAE + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2bjYAB body: encoding: US-ASCII string: '' @@ -3586,12 +3602,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:44 GMT + - Tue, 29 Aug 2023 18:36:33 GMT Set-Cookie: - - BrowserId=afPrSTHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:44 + - BrowserId=-hqc30aaEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3604,9 +3620,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9862/5000000 + - api-usage=6625/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:31:43 GMT + - Tue, 29 Aug 2023 18:36:32 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3615,12 +3631,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQxxAAE"},"Id":"8027e000001bQxxAAE","Product2Id":"01t7e000009AtDsAAK","IsDeleted":false,"OrderId":"8017e000000nRT3AAM","PricebookEntryId":"01u7e00000IskDGAAZ","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":240.0,"ListPrice":120.0,"TotalPrice":240.0,"ServiceDate":"2023-08-03","EndDate":"2025-08-02","Description":null,"CreatedDate":"2023-08-03T06:31:31.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:43.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:43.000+0000","OrderItemNumber":"0000001462","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":null,"SBQQ__DimensionType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":null,"SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":2.0,"SBQQ__QuoteLine__c":"a0v7e000008xYJYAA2","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":240.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1Nav4TIsgf92XbAOY99CE7pt","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1Nav4TIsgf92XbAOY99CE7pt"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2bjYAB"},"Id":"802DE00000Ay2bjYAB","Product2Id":"01tDE00000IIaraYAD","IsDeleted":false,"OrderId":"801DE0000048GS3YAM","PricebookEntryId":"01uDE00000KVlM6YAL","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":240.0,"ListPrice":120.0,"TotalPrice":240.0,"ServiceDate":"2023-08-29","EndDate":"2025-08-28","Description":null,"CreatedDate":"2023-08-29T18:36:25.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:32.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:32.000+0000","OrderItemNumber":"0000000134","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":null,"SBQQ__DimensionType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":null,"SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":2.0,"SBQQ__QuoteLine__c":"a0vDE00000K9OqTYAV","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":240.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1NkWmCIsgf92XbAOGw5g1sQq","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NkWmCIsgf92XbAOGw5g1sQq"}' + recorded_at: Tue, 29 Aug 2023 18:36:32 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nav4TIsgf92XbAOY99CE7pt + uri: https://api.stripe.com/v1/customers/cus_OXc0ajKKb0ff11?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -3632,13 +3648,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_uT81AJumd02sHD","request_duration_ms":247}}' + - '{"last_request_metrics":{"request_id":"req_egAb0RDfjqAEKM","request_duration_ms":281}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3653,11 +3669,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:31:44 GMT + - Tue, 29 Aug 2023 18:36:33 GMT Content-Type: - application/json Content-Length: - - '849' + - '1089' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -3673,13 +3689,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_yQ5bDvq8M5LFEE + - req_xShXMaj8vmcrRk Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '1.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -3688,40 +3702,51 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1691044301, - "currency": "usd", - "custom_unit_amount": null, + "id": "cus_OXc0ajKKb0ff11", + "object": "customer", + "address": null, + "balance": 0, + "created": 1693334187, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "21213D18", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, "livemode": false, - "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" - }, - "nickname": null, - "product": "prod_ONgR4MmTQrmCza", - "recurring": { - "aggregate_usage": null, - "interval": "month", - "interval_count": 3, - "trial_period_days": null, - "usage_type": "licensed" + "salesforce_account_id": "001DE000036VQjvYAG", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjvYAG" }, - "tax_behavior": "unspecified", - "tiers_mode": null, - "transform_quantity": null, - "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "name": "REST Account 2023-08-29 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": { + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", + "object": "test_helpers.test_clock", + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693334187, + "livemode": false, + "name": null, + "status": "ready" + } } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:33 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONgRawK9MZNDXo?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/prices/price_1NkWmCIsgf92XbAOGw5g1sQq body: encoding: US-ASCII string: '' @@ -3733,13 +3758,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_yQ5bDvq8M5LFEE","request_duration_ms":184}}' + - '{"last_request_metrics":{"request_id":"req_xShXMaj8vmcrRk","request_duration_ms":215}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3754,11 +3779,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:31:44 GMT + - Tue, 29 Aug 2023 18:36:33 GMT Content-Type: - application/json Content-Length: - - '1088' + - '850' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -3774,13 +3799,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_NEOIFiG3LcA7HJ + - req_rupTdb3z7vwGYh Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -3789,54 +3812,43 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONgRawK9MZNDXo", - "object": "customer", - "address": null, - "balance": 0, - "created": 1691036770, - "currency": null, - "default_currency": null, - "default_source": null, - "delinquent": false, - "description": null, - "discount": null, - "email": null, - "invoice_prefix": "95A6DA24", - "invoice_settings": { - "custom_fields": null, - "default_payment_method": null, - "footer": null, - "rendering_options": null - }, + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1693334192, + "currency": "usd", + "custom_unit_amount": null, "livemode": false, + "lookup_key": null, "metadata": { - "salesforce_account_id": "0017e00001iaRJWAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaRJWAA2" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", - "next_invoice_sequence": 1, - "phone": null, - "preferred_locales": [], - "shipping": null, - "tax_exempt": "none", - "test_clock": { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", - "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691036770, - "livemode": false, - "name": null, - "status": "ready" - } + "nickname": null, + "product": "prod_OXc05Om0XrosxT", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 3, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 6000, + "unit_amount_decimal": "6000" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:33 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nRT3AAM&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nRT3AAM&start_date=1691020800&customer=cus_ONgRawK9MZNDXo&phases[0][items][0][price]=price_1Nav4TIsgf92XbAOY99CE7pt&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bQxxAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQxxAAE&phases[0][items][0][quantity]=1&phases[0][end_date]=1754179200&phases[0][metadata][salesforce_order_id]=8017e000000nRT3AAM&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nRT3AAM + string: end_behavior=cancel&metadata[salesforce_order_id]=801DE0000048GS3YAM&metadata[salesforce_order_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F801DE0000048GS3YAM&start_date=1693267200&customer=cus_OXc0ajKKb0ff11&phases[0][items][0][price]=price_1NkWmCIsgf92XbAOGw5g1sQq&phases[0][items][0][metadata][salesforce_order_item_id]=802DE00000Ay2bjYAB&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2bjYAB&phases[0][items][0][quantity]=1&phases[0][end_date]=1756425600&phases[0][metadata][salesforce_order_id]=801DE0000048GS3YAM&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F801DE0000048GS3YAM headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3845,15 +3857,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_NEOIFiG3LcA7HJ","request_duration_ms":185}}' + - '{"last_request_metrics":{"request_id":"req_rupTdb3z7vwGYh","request_duration_ms":204}}' Idempotency-Key: - - 5ffb0b52-f677-471c-91d7-53bd75b25793 + - 65c557ab-e3fd-4e05-b2b2-a0b45f6a4ce0 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3868,11 +3880,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:31:45 GMT + - Tue, 29 Aug 2023 18:36:34 GMT Content-Type: - application/json Content-Length: - - '2495' + - '2498' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -3888,19 +3900,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 5ffb0b52-f677-471c-91d7-53bd75b25793 + - 65c557ab-e3fd-4e05-b2b2-a0b45f6a4ce0 Original-Request: - - req_h2yQCf59WOfZVq + - req_mQf7G5g1Q79rv5 Request-Id: - - req_h2yQCf59WOfZVq + - req_mQf7G5g1Q79rv5 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '374.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -3909,17 +3919,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nav4WIsgf92XbAObbDIH4r0", + "id": "sub_sched_1NkWmDIsgf92XbAOynKacn14", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036770, + "created": 1693334187, "current_phase": { - "end_date": 1754179200, - "start_date": 1691020800 + "end_date": 1756425600, + "start_date": 1693267200 }, - "customer": "cus_ONgRawK9MZNDXo", + "customer": "cus_OXc0ajKKb0ff11", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -3938,8 +3948,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "phases": [ { @@ -3954,29 +3964,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", - "price": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", + "price": "price_1NkWmCIsgf92XbAOGw5g1sQq", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null } @@ -3986,16 +3996,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nav4WIsgf92XbAOhIsiNUaV", - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3" + "subscription": "sub_1NkWmDIsgf92XbAOe8foJ5RW", + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:34 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1Nav4WIsgf92XbAObbDIH4r0"}' + string: '{"Stripe_ID__c":"sub_sched_1NkWmDIsgf92XbAOynKacn14"}' headers: User-Agent: - Faraday v2.4.0 @@ -4013,12 +4023,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:31:45 GMT + - Tue, 29 Aug 2023 18:36:34 GMT Set-Cookie: - - BrowserId=auRmCDHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:45 + - BrowserId=-tmnTEaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4033,18 +4043,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9870/5000000 + - api-usage=6627/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:34 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nRT3AAM-8017e000000nRT3AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/801DE0000048GS3YAM-801DE0000048GS3YAM body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nRT3AAM","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nRT3AAM","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1Nav4WIsgf92XbAObbDIH4r0","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"801DE0000048GS3YAM","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"801DE0000048GS3YAM","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync + Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NkWmDIsgf92XbAOynKacn14","Resolution_Status__c":"Success"}' headers: User-Agent: - Faraday v2.4.0 @@ -4062,12 +4072,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 06:31:46 GMT + - Tue, 29 Aug 2023 18:36:35 GMT Set-Cookie: - - BrowserId=azVFOzHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:46 + - BrowserId=-09Mu0aaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4080,20 +4090,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9863/5000000 + - api-usage=6627/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002Gs7ZEAS" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1WDE000003traF2AQ" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002Gs7ZEAS","success":true,"errors":[],"created":true}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"id":"a1WDE000003traF2AQ","success":true,"errors":[],"created":true}' + recorded_at: Tue, 29 Aug 2023 18:36:35 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nav4WIsgf92XbAObbDIH4r0?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWmDIsgf92XbAOynKacn14?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -4105,13 +4115,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_h2yQCf59WOfZVq","request_duration_ms":612}}' + - '{"last_request_metrics":{"request_id":"req_mQf7G5g1Q79rv5","request_duration_ms":648}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4126,11 +4136,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:31:46 GMT + - Tue, 29 Aug 2023 18:36:35 GMT Content-Type: - application/json Content-Length: - - '3612' + - '3616' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -4146,13 +4156,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_Ad4vF59NlzNeX6 + - req_YsBiUE4B6dSfAK Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -4161,17 +4169,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nav4WIsgf92XbAObbDIH4r0", + "id": "sub_sched_1NkWmDIsgf92XbAOynKacn14", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036770, + "created": 1693334187, "current_phase": { - "end_date": 1754179200, - "start_date": 1691020800 + "end_date": 1756425600, + "start_date": 1693267200 }, - "customer": "cus_ONgRawK9MZNDXo", + "customer": "cus_OXc0ajKKb0ff11", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -4190,8 +4198,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "phases": [ { @@ -4206,34 +4214,34 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", "price": { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -4245,20 +4253,20 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" }, "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null } @@ -4268,13 +4276,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nav4WIsgf92XbAOhIsiNUaV", - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3" + "subscription": "sub_1NkWmDIsgf92XbAOe8foJ5RW", + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:35 GMT - request: method: post - uri: https://api.stripe.com/v1/prices/price_1Nav4TIsgf92XbAOY99CE7pt + uri: https://api.stripe.com/v1/prices/price_1NkWmCIsgf92XbAOGw5g1sQq body: encoding: UTF-8 string: active=false @@ -4286,15 +4294,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Ad4vF59NlzNeX6","request_duration_ms":200}}' + - '{"last_request_metrics":{"request_id":"req_YsBiUE4B6dSfAK","request_duration_ms":230}}' Idempotency-Key: - - 4eeb52c8-e286-4089-8ce8-1858b1542b7a + - 701fc305-5a33-4a0b-a526-d23672a502fb Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4309,11 +4317,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:31:46 GMT + - Tue, 29 Aug 2023 18:36:35 GMT Content-Type: - application/json Content-Length: - - '850' + - '851' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -4329,19 +4337,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 4eeb52c8-e286-4089-8ce8-1858b1542b7a + - 701fc305-5a33-4a0b-a526-d23672a502fb Original-Request: - - req_iyJ5B2I3vUbykw + - req_IXPYBkEmjACb6C Request-Id: - - req_iyJ5B2I3vUbykw + - req_IXPYBkEmjACb6C Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '28.999999999999996' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -4350,22 +4356,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -4377,13 +4383,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:35 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM body: encoding: US-ASCII string: '' @@ -4402,12 +4408,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:47 GMT + - Tue, 29 Aug 2023 18:36:35 GMT Set-Cookie: - - BrowserId=a71gKzHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:47 + - BrowserId=-7yNcUaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4420,9 +4426,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9871/5000000 + - api-usage=6633/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:31:45 GMT + - Tue, 29 Aug 2023 18:36:34 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4431,12 +4437,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM"},"Id":"8017e000000nRT3AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuylAAD","EffectiveDate":"2023-08-03","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T06:31:33.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001431","TotalAmount":240.0,"CreatedDate":"2023-08-03T06:31:31.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:45.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:31:45.000+0000","LastViewedDate":"2023-08-03T06:31:45.000+0000","LastReferencedDate":"2023-08-03T06:31:45.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1Nav4WIsgf92XbAObbDIH4r0","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Nav4WIsgf92XbAObbDIH4r0"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM"},"Id":"801DE0000048GS3YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlANYA0","EffectiveDate":"2023-08-29","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:36:25.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000225","TotalAmount":240.0,"CreatedDate":"2023-08-29T18:36:24.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:34.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:34.000+0000","LastViewedDate":"2023-08-29T18:36:34.000+0000","LastReferencedDate":"2023-08-29T18:36:34.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NkWmDIsgf92XbAOynKacn14","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NkWmDIsgf92XbAOynKacn14"}' + recorded_at: Tue, 29 Aug 2023 18:36:35 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM body: encoding: UTF-8 string: '{"SBQQ__Contracted__c":true}' @@ -4457,12 +4464,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:31:47 GMT + - Tue, 29 Aug 2023 18:36:35 GMT Set-Cookie: - - BrowserId=a_ZKiTHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:47 + - BrowserId=-9fdcEaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4477,14 +4484,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9864/5000000 + - api-usage=6628/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:37 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Contract%20WHERE%20SBQQ__Order__c%20=%20%278017e000000nRT3AAM%27 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Contract%20WHERE%20SBQQ__Order__c%20=%20%27801DE0000048GS3YAM%27 body: encoding: US-ASCII string: '' @@ -4503,12 +4510,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:51 GMT + - Tue, 29 Aug 2023 18:36:37 GMT Set-Cookie: - - BrowserId=bnH5ezHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:51 + - BrowserId=_Mfi-0aaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4521,7 +4528,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9865/5000000 + - api-usage=6633/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4530,11 +4537,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM"},"Id":"8007e000001iCWdAAM"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ"},"Id":"800DE000001ls8BYAQ"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:37 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ body: encoding: US-ASCII string: '' @@ -4553,12 +4560,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:51 GMT + - Tue, 29 Aug 2023 18:36:37 GMT Set-Cookie: - - BrowserId=brp0SjHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:51 + - BrowserId=_N8UMkaaEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4571,9 +4578,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9872/5000000 + - api-usage=6630/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:31:50 GMT + - Tue, 29 Aug 2023 18:36:37 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4582,12 +4589,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM"},"Id":"8007e000001iCWdAAM","AccountId":"0017e00001iaRJWAA2","Pricebook2Id":null,"OwnerExpirationNotice":null,"StartDate":"2023-08-03","EndDate":"2025-08-02","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ContractTerm":24,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","CompanySignedId":null,"CompanySignedDate":null,"CustomerSignedId":null,"CustomerSignedTitle":null,"CustomerSignedDate":null,"SpecialTerms":null,"ActivatedById":null,"ActivatedDate":null,"StatusCode":"Draft","Description":null,"IsDeleted":false,"ContractNumber":"00000380","LastApprovedDate":null,"CreatedDate":"2023-08-03T06:31:49.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:50.000+0000","LastActivityDate":null,"LastViewedDate":null,"LastReferencedDate":null,"SBQQ__AmendmentOpportunityRecordTypeId__c":null,"SBQQ__AmendmentOpportunityStage__c":null,"SBQQ__AmendmentOwner__c":null,"SBQQ__AmendmentPricebookId__c":null,"SBQQ__AmendmentRenewalBehavior__c":"Latest - End Date","SBQQ__AmendmentStartDate__c":null,"SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-02","SBQQ__MDQRenewalBehavior__c":null,"SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0067e00000OCuylAAD","SBQQ__Order__c":"8017e000000nRT3AAM","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalOpportunityRecordTypeId__c":null,"SBQQ__RenewalOpportunityStage__c":null,"SBQQ__RenewalOpportunity__c":null,"SBQQ__RenewalOwner__c":null,"SBQQ__RenewalPricebookId__c":null,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0.0,"SBQQ__OpportunityPricebookId__c":null}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ"},"Id":"800DE000001ls8BYAQ","AccountId":"001DE000036VQjvYAG","Pricebook2Id":null,"OwnerExpirationNotice":null,"StartDate":"2023-08-29","EndDate":"2025-08-28","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ContractTerm":24,"OwnerId":"005DE00000JiwzhYAB","Status":"Draft","CompanySignedId":null,"CompanySignedDate":null,"CustomerSignedId":null,"CustomerSignedTitle":null,"CustomerSignedDate":null,"SpecialTerms":null,"ActivatedById":null,"ActivatedDate":null,"StatusCode":"Draft","Description":null,"IsDeleted":false,"ContractNumber":"00000143","LastApprovedDate":null,"CreatedDate":"2023-08-29T18:36:36.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:37.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:37.000+0000","LastActivityDate":null,"LastViewedDate":null,"LastReferencedDate":null,"SBQQ__AmendmentOpportunityRecordTypeId__c":null,"SBQQ__AmendmentOpportunityStage__c":null,"SBQQ__AmendmentOwner__c":null,"SBQQ__AmendmentPricebookId__c":null,"SBQQ__AmendmentRenewalBehavior__c":"Latest + End Date","SBQQ__AmendmentStartDate__c":null,"SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-28","SBQQ__MDQRenewalBehavior__c":null,"SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"006DE00000wQlANYA0","SBQQ__Order__c":"801DE0000048GS3YAM","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalOpportunityRecordTypeId__c":null,"SBQQ__RenewalOpportunityStage__c":null,"SBQQ__RenewalOpportunity__c":null,"SBQQ__RenewalOwner__c":null,"SBQQ__RenewalPricebookId__c":null,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0.0,"SBQQ__OpportunityPricebookId__c":null}' + recorded_at: Tue, 29 Aug 2023 18:36:37 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=8007e000001iCWdAAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=800DE000001ls8BYAQ body: encoding: UTF-8 string: "{}" @@ -4608,12 +4615,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:52 GMT + - Tue, 29 Aug 2023 18:36:37 GMT Set-Cookie: - - BrowserId=bvekUDHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:52 + - BrowserId=_PsoCEaaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4631,28 +4638,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX\"},\"Id\":\"a0z7e00000BDKnKAAX\",\"Name\":\"Q-01351\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__MasterContract__c\":\"8007e000001iCWdAAM\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT\"},\"Id\":\"a0zDE00000LMv1DYAT\",\"Name\":\"Q-00127\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__MasterContract__c\":\"800DE000001ls8BYAQ\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuyqAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM\"},\"Id\":\"8007e000001iCWdAAM\",\"ContractNumber\":\"00000380\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD\"},\"Id\":\"0067e00000OCuyqAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnKAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":0.00,\"netNonSegmentTotal\":0.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJeAAM\"},\"Id\":\"a0v7e000008xYJeAAM\",\"SBQQ__Quote__c\":\"a0z7e00000BDKnKAAX\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0002991\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":240.00,\"SBQQ__NetTotal__c\":0.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.00,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5EWEA1\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5EWEA1\"},\"Id\":\"a1B7e00000EX5EWEA1\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYJYAA2\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYJYAA2\",\"SBQQ__Contract__c\":\"8007e000001iCWdAAM\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Incomplete__c\":false,\"SBQQ__RequiredBy__r\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlASYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ\"},\"Id\":\"800DE000001ls8BYAQ\",\"ContractNumber\":\"00000143\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0\"},\"Id\":\"006DE00000wQlASYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv1DYAT\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":0.00,\"netNonSegmentTotal\":0.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqZYAV\"},\"Id\":\"a0vDE00000K9OqZYAV\",\"SBQQ__Quote__c\":\"a0zDE00000LMv1DYAT\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000325\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":240.00,\"SBQQ__NetTotal__c\":0.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.00,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVrG2AU\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVrG2AU\"},\"Id\":\"a1BDE000006dVrG2AU\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"SBQQ__Contract__c\":\"800DE000001ls8BYAQ\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Incomplete__c\":false,\"SBQQ__RequiredBy__r\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:36:40 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator body: encoding: UTF-8 - string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX\"},\"Id\":\"a0z7e00000BDKnKAAX\",\"Name\":\"Q-01351\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-09-06\",\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__MasterContract__c\":\"8007e000001iCWdAAM\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__ContractingMethod__c\":\"By + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT\"},\"Id\":\"a0zDE00000LMv1DYAT\",\"Name\":\"Q-00127\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-10-02\",\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__MasterContract__c\":\"800DE000001ls8BYAQ\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuyqAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM\"},\"Id\":\"8007e000001iCWdAAM\",\"ContractNumber\":\"00000380\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD\"},\"Id\":\"0067e00000OCuyqAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnKAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":22,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJeAAM\"},\"Id\":\"a0v7e000008xYJeAAM\",\"SBQQ__Quote__c\":\"a0z7e00000BDKnKAAX\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0002991\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":240.0,\"SBQQ__NetTotal__c\":0.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":2,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.0,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5EWEA1\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5EWEA1\"},\"Id\":\"a1B7e00000EX5EWEA1\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYJYAA2\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYJYAA2\",\"SBQQ__Contract__c\":\"8007e000001iCWdAAM\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Incomplete__c\":false,\"SBQQ__RequiredBy__r\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlASYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ\"},\"Id\":\"800DE000001ls8BYAQ\",\"ContractNumber\":\"00000143\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0\"},\"Id\":\"006DE00000wQlASYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv1DYAT\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":22,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqZYAV\"},\"Id\":\"a0vDE00000K9OqZYAV\",\"SBQQ__Quote__c\":\"a0zDE00000LMv1DYAT\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000325\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":240.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":240.0,\"SBQQ__NetTotal__c\":0.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":240.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":240.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":2,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":240.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":240.0,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVrG2AU\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVrG2AU\"},\"Id\":\"a1BDE000006dVrG2AU\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"SBQQ__Contract__c\":\"800DE000001ls8BYAQ\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Incomplete__c\":false,\"SBQQ__RequiredBy__r\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' headers: User-Agent: - Faraday v2.4.0 @@ -4670,12 +4677,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:56 GMT + - Tue, 29 Aug 2023 18:36:40 GMT Set-Cookie: - - BrowserId=cWdEvzHHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:56 + - BrowserId=_qpeykaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4693,28 +4700,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX\"},\"Id\":\"a0z7e00000BDKnKAAX\",\"Name\":\"Q-01351\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__SubscriptionTerm__c\":22,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-09-06\",\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__MasterContract__c\":\"8007e000001iCWdAAM\",\"SBQQ__NetAmount__c\":240.00,\"SBQQ__CustomerAmount__c\":240.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT\"},\"Id\":\"a0zDE00000LMv1DYAT\",\"Name\":\"Q-00127\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__SubscriptionTerm__c\":22,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-10-02\",\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__MasterContract__c\":\"800DE000001ls8BYAQ\",\"SBQQ__NetAmount__c\":240.00,\"SBQQ__CustomerAmount__c\":240.00,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuyqAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM\"},\"Id\":\"8007e000001iCWdAAM\",\"ContractNumber\":\"00000380\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD\"},\"Id\":\"0067e00000OCuyqAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnKAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":229.21,\"netNonSegmentTotal\":229.2100,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJeAAM\"},\"Id\":\"a0v7e000008xYJeAAM\",\"SBQQ__Quote__c\":\"a0z7e00000BDKnKAAX\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0002992\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":229.21,\"SBQQ__EffectiveSubscriptionTerm__c\":22,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":229.21,\"SBQQ__NetTotal__c\":229.21,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":229.21,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":229.21,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.91004566210045662100456621004566,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":229.21,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":229.21,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5EWEA1\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5EWEA1\"},\"Id\":\"a1B7e00000EX5EWEA1\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYJYAA2\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYJYAA2\",\"SBQQ__Contract__c\":\"8007e000001iCWdAAM\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-09-06\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":229.21,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlASYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ\"},\"Id\":\"800DE000001ls8BYAQ\",\"ContractNumber\":\"00000143\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0\"},\"Id\":\"006DE00000wQlASYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv1DYAT\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":228.88,\"netNonSegmentTotal\":228.8800,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqZYAV\"},\"Id\":\"a0vDE00000K9OqZYAV\",\"SBQQ__Quote__c\":\"a0zDE00000LMv1DYAT\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000326\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":228.88,\"SBQQ__EffectiveSubscriptionTerm__c\":22,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":228.88,\"SBQQ__NetTotal__c\":228.88,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":228.88,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":228.88,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.90730593607305936073059360730594,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":228.88,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":228.88,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVrG2AU\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVrG2AU\"},\"Id\":\"a1BDE000006dVrG2AU\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"SBQQ__Contract__c\":\"800DE000001ls8BYAQ\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-02\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":228.88,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:36:41 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter body: encoding: UTF-8 - string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX\"},\"Id\":\"a0z7e00000BDKnKAAX\",\"Name\":\"Q-01351\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__SubscriptionTerm__c\":22,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-09-06\",\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__MasterContract__c\":\"8007e000001iCWdAAM\",\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__ContractingMethod__c\":\"By + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT\"},\"Id\":\"a0zDE00000LMv1DYAT\",\"Name\":\"Q-00127\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__SubscriptionTerm__c\":22,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-10-02\",\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__MasterContract__c\":\"800DE000001ls8BYAQ\",\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuyqAAD\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"Id\":\"0017e00001iaRJWAA2\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM\"},\"Id\":\"8007e000001iCWdAAM\",\"ContractNumber\":\"00000380\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD\"},\"Id\":\"0067e00000OCuyqAAD\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnKAAX\",\"AccountId\":\"0017e00001iaRJWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":229.21,\"netNonSegmentTotal\":229.21,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJeAAM\"},\"Id\":\"a0v7e000008xYJeAAM\",\"SBQQ__Quote__c\":\"a0z7e00000BDKnKAAX\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0002992\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":229.21,\"SBQQ__EffectiveSubscriptionTerm__c\":22,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":229.21,\"SBQQ__NetTotal__c\":229.21,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":229.21,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":229.21,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.9100456621004567,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":229.21,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":229.21,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5EWEA1\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"Id\":\"01t7e000009AtDsAAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5EWEA1\"},\"Id\":\"a1B7e00000EX5EWEA1\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYJYAA2\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYJYAA2\",\"SBQQ__Contract__c\":\"8007e000001iCWdAAM\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-09-06\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":229.21,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQlASYA0\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"Id\":\"001DE000036VQjvYAG\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ\"},\"Id\":\"800DE000001ls8BYAQ\",\"ContractNumber\":\"00000143\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0\"},\"Id\":\"006DE00000wQlASYA0\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv1DYAT\",\"AccountId\":\"001DE000036VQjvYAG\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":228.88,\"netNonSegmentTotal\":228.88,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqZYAV\"},\"Id\":\"a0vDE00000K9OqZYAV\",\"SBQQ__Quote__c\":\"a0zDE00000LMv1DYAT\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000326\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":228.88,\"SBQQ__EffectiveSubscriptionTerm__c\":22,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":228.88,\"SBQQ__NetTotal__c\":228.88,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":228.88,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":228.88,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.9073059360730593,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":228.88,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":228.88,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVrG2AU\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"Id\":\"01tDE00000IIaraYAD\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVrG2AU\"},\"Id\":\"a1BDE000006dVrG2AU\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"SBQQ__Contract__c\":\"800DE000001ls8BYAQ\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-02\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":228.88,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -4732,12 +4739,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:58 GMT + - Tue, 29 Aug 2023 18:36:41 GMT Set-Cookie: - - BrowserId=clWcXzHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:58 + - BrowserId=_0FHj0aaEe6U0fN8rRY3OQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4757,18 +4764,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKnKAAX\",\"AccountId\":\"0017e00001iaRJWAA2\",\"Id\":\"0067e00000OCuyqAAD\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaRJWAA2\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-03 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-01351\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":22.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"0017e00001iaRJWAA2\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-09-06\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM\"},\"ContractNumber\":\"00000380\",\"Id\":\"8007e000001iCWdAAM\"},\"SBQQ__Opportunity2__c\":\"0067e00000OCuyqAAD\",\"SBQQ__MasterContract__c\":\"8007e000001iCWdAAM\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z7e00000BDKnKAAX\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24.0},\"nextKey\":2,\"netTotal\":229.21,\"netNonSegmentTotal\":229.21,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKnKAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJeAAM\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":true,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__SegmentIndex__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKnKAAX\",\"SBQQ__ProratedListPrice__c\":229.21,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":229.21,\"Id\":\"a0v7e000008xYJeAAM\",\"SBQQ__EffectiveSubscriptionTerm__c\":22.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":229.21,\"SBQQ__Quantity__c\":2.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":null,\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5EWEA1\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYJYAA2\",\"SBQQ__Contract__c\":\"8007e000001iCWdAAM\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYJYAA2\",\"Id\":\"a1B7e00000EX5EWEA1\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5EWEA1\",\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":229.21,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":1.9100456621004567,\"Name\":\"QL-0002992\",\"SBQQ__CustomerPrice__c\":229.21,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":229.21,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":229.21,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009AtDsAAK\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009AtDsAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__SegmentLabel__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-09-06\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":229.21,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0\"},\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv1DYAT\",\"AccountId\":\"001DE000036VQjvYAG\",\"Id\":\"006DE00000wQlASYA0\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"001DE000036VQjvYAG\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-08-29 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00127\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":22.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"001DE000036VQjvYAG\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-10-02\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ\"},\"ContractNumber\":\"00000143\",\"Id\":\"800DE000001ls8BYAQ\"},\"SBQQ__Opportunity2__c\":\"006DE00000wQlASYA0\",\"SBQQ__MasterContract__c\":\"800DE000001ls8BYAQ\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0zDE00000LMv1DYAT\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24.0},\"nextKey\":2,\"netTotal\":228.88,\"netNonSegmentTotal\":228.88,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv1DYAT\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqZYAV\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":true,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__SegmentIndex__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv1DYAT\",\"SBQQ__ProratedListPrice__c\":228.88,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":228.88,\"Id\":\"a0vDE00000K9OqZYAV\",\"SBQQ__EffectiveSubscriptionTerm__c\":22.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":228.88,\"SBQQ__Quantity__c\":2.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":null,\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVrG2AU\"},\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"SBQQ__Contract__c\":\"800DE000001ls8BYAQ\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9OqTYAV\",\"Id\":\"a1BDE000006dVrG2AU\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVrG2AU\",\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":228.88,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":1.9073059360730593,\"Name\":\"QL-0000326\",\"SBQQ__CustomerPrice__c\":228.88,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":228.88,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":228.88,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01tDE00000IIaraYAD\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01tDE00000IIaraYAD\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__SegmentLabel__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-02\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":228.88,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:36:41 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -4787,12 +4794,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:31:58 GMT + - Tue, 29 Aug 2023 18:36:42 GMT Set-Cookie: - - BrowserId=csp-RTHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:58 + - BrowserId=_5dW1kaaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4805,7 +4812,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9873/5000000 + - api-usage=6644/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4814,14 +4821,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:42 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT body: encoding: UTF-8 - string: '{"SBQQ__PricebookId__c":"01s7e000002eLFEAA2"}' + string: '{"SBQQ__PricebookId__c":"01sDE000008q9JUYAY"}' headers: User-Agent: - Faraday v2.4.0 @@ -4839,12 +4846,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:31:59 GMT + - Tue, 29 Aug 2023 18:36:42 GMT Set-Cookie: - - BrowserId=cv_mHjHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:31:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:31:59 + - BrowserId=_69LyUaaEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4859,14 +4866,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9868/5000000 + - api-usage=6639/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:44 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -4887,12 +4894,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:32:02 GMT + - Tue, 29 Aug 2023 18:36:45 GMT Set-Cookie: - - BrowserId=dKg-VTHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:02 + - BrowserId=AUxZ60abEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4907,14 +4914,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9869/5000000 + - api-usage=6638/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX/SBQQ__Orders__r + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -4933,12 +4940,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:04 GMT + - Tue, 29 Aug 2023 18:36:46 GMT Set-Cookie: - - BrowserId=diEjJzHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:04 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:04 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:04 + - BrowserId=Afy-EUabEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4951,7 +4958,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9867/5000000 + - api-usage=6643/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4960,13 +4967,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nRT8AAM"},"Id":"8017e000000nRT8AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuyqAAD","EffectiveDate":"2023-09-06","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00001432","TotalAmount":229.21,"CreatedDate":"2023-08-03T06:32:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:04.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:32:04.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":229.21,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/801DE0000048GS8YAM"},"Id":"801DE0000048GS8YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlASYA0","EffectiveDate":"2023-10-02","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00000226","TotalAmount":228.88,"CreatedDate":"2023-08-29T18:36:45.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:45.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:45.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":228.88,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:46 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -4987,12 +4993,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:32:05 GMT + - Tue, 29 Aug 2023 18:36:46 GMT Set-Cookie: - - BrowserId=dnvsvDHHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:05 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:05 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:05 + - BrowserId=AhXEdEabEe6U0fN8rRY3OQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5007,14 +5013,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9867/5000000 + - api-usage=6639/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM body: encoding: US-ASCII string: '' @@ -5033,12 +5039,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:06 GMT + - Tue, 29 Aug 2023 18:36:47 GMT Set-Cookie: - - BrowserId=dwQwVzHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:06 + - BrowserId=AoPHp0abEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5051,9 +5057,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9870/5000000 + - api-usage=6643/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:32:05 GMT + - Tue, 29 Aug 2023 18:36:46 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5062,13 +5068,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM"},"Id":"8017e000000nRT8AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuyqAAD","EffectiveDate":"2023-09-06","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T06:32:05.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001432","TotalAmount":229.21,"CreatedDate":"2023-08-03T06:32:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:05.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:32:05.000+0000","LastViewedDate":"2023-08-03T06:32:05.000+0000","LastReferencedDate":"2023-08-03T06:32:05.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM"},"Id":"801DE0000048GS8YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlASYA0","EffectiveDate":"2023-10-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:36:46.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000226","TotalAmount":228.88,"CreatedDate":"2023-08-29T18:36:45.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:46.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:46.000+0000","LastViewedDate":"2023-08-29T18:36:46.000+0000","LastReferencedDate":"2023-08-29T18:36:46.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":229.21,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + Needed","SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":228.88,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Tue, 29 Aug 2023 18:36:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM body: encoding: US-ASCII string: '' @@ -5087,12 +5093,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:06 GMT + - Tue, 29 Aug 2023 18:36:47 GMT Set-Cookie: - - BrowserId=d0kBoTHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:06 + - BrowserId=AsIwVUabEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5105,9 +5111,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9874/5000000 + - api-usage=6643/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:32:05 GMT + - Tue, 29 Aug 2023 18:36:46 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5116,16 +5122,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM"},"Id":"8017e000000nRT8AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuyqAAD","EffectiveDate":"2023-09-06","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T06:32:05.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001432","TotalAmount":229.21,"CreatedDate":"2023-08-03T06:32:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:05.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:32:05.000+0000","LastViewedDate":"2023-08-03T06:32:06.000+0000","LastReferencedDate":"2023-08-03T06:32:06.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM"},"Id":"801DE0000048GS8YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlASYA0","EffectiveDate":"2023-10-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:36:46.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000226","TotalAmount":228.88,"CreatedDate":"2023-08-29T18:36:45.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:46.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:46.000+0000","LastViewedDate":"2023-08-29T18:36:47.000+0000","LastReferencedDate":"2023-08-29T18:36:47.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":229.21,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + Needed","SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":228.88,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Tue, 29 Aug 2023 18:36:47 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nRT8AAM"]}' + string: '{"order_ids":["801DE0000048GS8YAM"]}' headers: User-Agent: - Faraday v2.4.0 @@ -5143,12 +5149,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:06 GMT + - Tue, 29 Aug 2023 18:36:47 GMT Set-Cookie: - - BrowserId=d4UgPjHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:06 + - BrowserId=AuI7-EabEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5168,39 +5174,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD"},"Id":"0067e00000OCuyqAAD","IsDeleted":false,"AccountId":"0017e00001iaRJWAA2","IsPrivate":false,"Name":"Amendment - for contract #00000380","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-03","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:53.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:54.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-03T06:31:53.000+0000","LastReferencedDate":"2023-08-03T06:31:53.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCWdAAM","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKnKAAX","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2"},"Id":"0017e00001iaRJWAA2","IsDeleted":false,"Name":"REST - Account 2023-08-03 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaRJWAA2","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:19.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:37.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:37.000+0000","LastViewedDate":"2023-08-03T06:31:37.000+0000","LastReferencedDate":"2023-08-03T06:31:37.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_ID__c":"cus_ONgRawK9MZNDXo","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ONgRawK9MZNDXo"},{"Accounts":["0017e00001iaRJWAA2"],"Opportunities":["0067e00000OCuyqAAD"],"SBQQ__RegularAmount__c":229.21,"SBQQ__NetAmount__c":229.21,"SBQQ__ListAmount__c":229.21,"SBQQ__CustomerAmount__c":229.21,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-01","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":22,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-09-06","SBQQ__ShippingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__RenewalTerm__c":24,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0067e00000OCuyqAAD","SBQQ__MasterContract__c":"8007e000001iCWdAAM","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-03T06:32:02.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-03T06:31:56.000+0000","SBQQ__EndDate__c":"2025-08-02","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0"},"Id":"006DE00000wQlASYA0","IsDeleted":false,"AccountId":"001DE000036VQjvYAG","IsPrivate":false,"Name":"Amendment + for contract #00000143","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:38.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:38.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:38.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-08-29T18:36:38.000+0000","LastReferencedDate":"2023-08-29T18:36:38.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"800DE000001ls8BYAQ","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0zDE00000LMv1DYAT","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG"},"Id":"001DE000036VQjvYAG","IsDeleted":false,"Name":"REST + Account 2023-08-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/001DE000036VQjvYAG","OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:18.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:28.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:28.000+0000","LastViewedDate":"2023-08-29T18:36:28.000+0000","LastReferencedDate":"2023-08-29T18:36:28.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_ID__c":"cus_OXc0ajKKb0ff11","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OXc0ajKKb0ff11"},{"Accounts":["001DE000036VQjvYAG"],"Opportunities":["006DE00000wQlASYA0"],"SBQQ__RegularAmount__c":228.88,"SBQQ__NetAmount__c":228.88,"SBQQ__ListAmount__c":228.88,"SBQQ__CustomerAmount__c":228.88,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-28","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":22,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-10-02","SBQQ__ShippingName__c":"REST + Account 2023-08-29 00:00:00 UTC","SBQQ__SalesRep__c":"005DE00000JiwzhYAB","SBQQ__RenewalTerm__c":24,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01sDE000008q9JUYAY","SBQQ__PriceBook__c":"01sDE000008q9JUYAY","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"006DE00000wQlASYA0","SBQQ__MasterContract__c":"800DE000001ls8BYAQ","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-29T18:36:45.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-29T18:36:40.000+0000","SBQQ__EndDate__c":"2025-08-28","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__Account__c":"0017e00001iaRJWAA2","LastReferencedDate":"2023-08-03T06:32:02.000+0000","LastViewedDate":"2023-08-03T06:32:02.000+0000","SystemModstamp":"2023-08-03T06:32:02.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:02.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:54.000+0000","Name":"Q-01351","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKnKAAX","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK"},"Id":"01t7e000009AtDsAAK","Name":"REST - Product2 2023-08-03 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-03T06:31:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:38.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:38.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-08-03T06:31:39.000+0000","LastReferencedDate":"2023-08-03T06:31:39.000+0000","SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-08-29 00:00:00 UTC","SBQQ__Account__c":"001DE000036VQjvYAG","LastReferencedDate":"2023-08-29T18:36:45.000+0000","LastViewedDate":"2023-08-29T18:36:45.000+0000","SystemModstamp":"2023-08-29T18:36:45.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:45.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:38.000+0000","Name":"Q-00127","IsDeleted":false,"OwnerId":"005DE00000JiwzhYAB","Id":"a0zDE00000LMv1DYAT","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD"},"Id":"01tDE00000IIaraYAD","Name":"REST + Product2 2023-08-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-08-29T18:36:17.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:29.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:29.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-08-29T18:36:29.000+0000","LastReferencedDate":"2023-08-29T18:36:29.000+0000","SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One per quote line","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_ID__c":"prod_ONgR4MmTQrmCza","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONgR4MmTQrmCza"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IskDGAAZ"},"Id":"01u7e00000IskDGAAZ","Name":"REST - Product2 2023-08-03 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AtDsAAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-03T06:31:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:18.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:18.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM"},"Id":"8007e000001iCWdAAM","AccountId":"0017e00001iaRJWAA2","StartDate":"2023-08-03","EndDate":"2025-08-02","BillingAddress":null,"ContractTerm":24,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000380","CreatedDate":"2023-08-03T06:31:49.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:50.000+0000","LastViewedDate":"2023-08-03T06:31:52.000+0000","LastReferencedDate":"2023-08-03T06:31:52.000+0000","SBQQ__AmendmentRenewalBehavior__c":"Latest - End Date","SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-02","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0067e00000OCuylAAD","SBQQ__Order__c":"8017e000000nRT3AAM","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJeAAM"},"Id":"a0v7e000008xYJeAAM","IsDeleted":false,"Name":"QL-0002992","CreatedDate":"2023-08-03T06:31:55.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:01.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:32:01.000+0000","SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":229.21,"SBQQ__Description__c":"A - great description","SBQQ__Existing__c":true,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":229.21,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":229.21,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IskDGAAZ","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AtDsAAK","SBQQ__ProrateMultiplier__c":1.91004566210045662100456621004566,"SBQQ__ProratedListPrice__c":229.21,"SBQQ__ProratedPrice__c":229.21,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":229.21,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpgradedSubscription__c":"a1B7e00000EX5EWEA1","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":229.21,"SBQQ__EffectiveEndDate__c":"2025-08-02","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-06","SBQQ__EffectiveSubscriptionTerm__c":22,"SBQQ__ListTotal__c":229.21,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":229.21,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":229.21,"SBQQ__PackageTotal__c":229.21,"SBQQ__PartnerTotal__c":229.21,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RegularTotal__c":229.21,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJYAA2"},"Id":"a0v7e000008xYJYAA2","IsDeleted":false,"Name":"QL-0002990","CreatedDate":"2023-08-03T06:31:29.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:29.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:29.000+0000","SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":240.00,"SBQQ__Description__c":"A - great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":240.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":240.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IskDGAAZ","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AtDsAAK","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":240.00,"SBQQ__ProratedPrice__c":240.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":240.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":240.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-03","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":240.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":240.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":240.00,"SBQQ__PackageTotal__c":240.00,"SBQQ__PartnerTotal__c":240.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RegularTotal__c":240.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5EWEA1"},"Id":"a1B7e00000EX5EWEA1","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000358","CreatedDate":"2023-08-03T06:31:50.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:50.000+0000","SBQQ__Account__c":"0017e00001iaRJWAA2","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCWdAAM","SBQQ__CustomerPrice__c":240.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":240.00,"SBQQ__NetPrice__c":240.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8027e000001bQxxAAE","SBQQ__OriginalQuoteLine__c":"a0v7e000008xYJYAA2","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AtDsAAK","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xYJYAA2","SBQQ__RegularPrice__c":240.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX5EWEA1","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-03","SBQQ__ContractNumber__c":"00000380","SBQQ__EndDate__c":"2025-08-02","SBQQ__ProductId__c":"01t7e000009AtDs","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009AtDs","SBQQ__StartDate__c":"2023-08-03","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009AtDsAAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":229.21,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8027e000001bQxxAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xYJeAAM","SBQQ__ProrateMultiplier__c":1.91004566210045662100456621004566,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"Quantity - Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001463","SystemModstamp":"2023-08-03T06:32:05.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:05.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:32:03.000+0000","EndDate":"2025-08-02","ServiceDate":"2023-09-06","TotalPrice":229.21,"ListPrice":120.00,"UnitPrice":229.21,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IskDGAAZ","OrderId":"8017e000000nRT8AAM","IsDeleted":false,"Product2Id":"01t7e000009AtDsAAK","Id":"8027e000001bQy2AAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQy2AAE","type":"OrderItem"}},{"Contracts":["8007e000001iCWdAAM"],"PricebookEntries":[],"Products":["01t7e000009AtDsAAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1Nav4TIsgf92XbAOY99CE7pt","Stripe_ID__c":"price_1Nav4TIsgf92XbAOY99CE7pt","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":240.00,"SBQQ__Subscription__c":"a1B7e00000EX5EWEA1","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xYJYAA2","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":true,"SBQQ__Contract__c":"8007e000001iCWdAAM","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001462","SystemModstamp":"2023-08-03T06:31:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:31.000+0000","EndDate":"2025-08-02","ServiceDate":"2023-08-03","TotalPrice":240.00,"ListPrice":120.00,"UnitPrice":240.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IskDGAAZ","OrderId":"8017e000000nRT3AAM","IsDeleted":false,"Product2Id":"01t7e000009AtDsAAK","Id":"8027e000001bQxxAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQxxAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD"},"Id":"0067e00000OCuylAAD","IsDeleted":false,"AccountId":"0017e00001iaRJWAA2","IsPrivate":false,"Name":"REST - Opportunity 2023-08-03 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-03","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:20.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:22.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-03T06:31:20.000+0000","LastReferencedDate":"2023-08-03T06:31:20.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKnFAAX","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000OCuyqAAD"],"Accounts":["0017e00001iaRJWAA2"],"OrderItems":["8027e000001bQy2AAE"],"Quotes":["a0z7e00000BDKnKAAX"],"InitialOrderQuotes":["a0z7e00000BDKnFAAX"],"InitialOrderId":["8017e000000nRT3AAM"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKnFAAX","Id":"8007e000001iCWdAAM","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCWdAAM","Id":"0067e00000OCuyqAAD","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":229.21,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":24,"SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__PriceCalcStatus__c":"Not + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_ID__c":"prod_OXc05Om0XrosxT","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OXc05Om0XrosxT"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM6YAL"},"Id":"01uDE00000KVlM6YAL","Name":"REST + Product2 2023-08-29 00:00:00 UTC","Pricebook2Id":"01sDE000008q9JUYAY","Product2Id":"01tDE00000IIaraYAD","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-29T18:36:18.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:18.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:18.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ"},"Id":"800DE000001ls8BYAQ","AccountId":"001DE000036VQjvYAG","StartDate":"2023-08-29","EndDate":"2025-08-28","BillingAddress":null,"ContractTerm":24,"OwnerId":"005DE00000JiwzhYAB","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000143","CreatedDate":"2023-08-29T18:36:36.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:37.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:37.000+0000","LastViewedDate":"2023-08-29T18:36:37.000+0000","LastReferencedDate":"2023-08-29T18:36:37.000+0000","SBQQ__AmendmentRenewalBehavior__c":"Latest + End Date","SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-28","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"006DE00000wQlANYA0","SBQQ__Order__c":"801DE0000048GS3YAM","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqZYAV"},"Id":"a0vDE00000K9OqZYAV","IsDeleted":false,"Name":"QL-0000326","CreatedDate":"2023-08-29T18:36:40.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:44.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:44.000+0000","SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":228.88,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":true,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":228.88,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":228.88,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01uDE00000KVlM6YAL","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIaraYAD","SBQQ__ProrateMultiplier__c":1.90730593607305936073059360730594,"SBQQ__ProratedListPrice__c":228.88,"SBQQ__ProratedPrice__c":228.88,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":228.88,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpgradedSubscription__c":"a1BDE000006dVrG2AU","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":228.88,"SBQQ__EffectiveEndDate__c":"2025-08-28","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-10-02","SBQQ__EffectiveSubscriptionTerm__c":22,"SBQQ__ListTotal__c":228.88,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":228.88,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":228.88,"SBQQ__PackageTotal__c":228.88,"SBQQ__PartnerTotal__c":228.88,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RegularTotal__c":228.88,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqTYAV"},"Id":"a0vDE00000K9OqTYAV","IsDeleted":false,"Name":"QL-0000324","CreatedDate":"2023-08-29T18:36:24.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:24.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:24.000+0000","SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":240.00,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":240.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":240.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01uDE00000KVlM6YAL","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIaraYAD","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":240.00,"SBQQ__ProratedPrice__c":240.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":240.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":240.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-29","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":240.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":240.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":240.00,"SBQQ__PackageTotal__c":240.00,"SBQQ__PartnerTotal__c":240.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RegularTotal__c":240.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVrG2AU"},"Id":"a1BDE000006dVrG2AU","OwnerId":"005DE00000JiwzhYAB","IsDeleted":false,"Name":"SUB-0000078","CreatedDate":"2023-08-29T18:36:36.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:37.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:37.000+0000","SBQQ__Account__c":"001DE000036VQjvYAG","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"800DE000001ls8BYAQ","SBQQ__CustomerPrice__c":240.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":240.00,"SBQQ__NetPrice__c":240.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"802DE00000Ay2bjYAB","SBQQ__OriginalQuoteLine__c":"a0vDE00000K9OqTYAV","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIaraYAD","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0vDE00000K9OqTYAV","SBQQ__RegularPrice__c":240.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1BDE000006dVrG2AU","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-08-29","SBQQ__ContractNumber__c":"00000143","SBQQ__EndDate__c":"2025-08-28","SBQQ__ProductId__c":"01tDE00000IIara","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RenewalProductId__c":"01tDE00000IIara","SBQQ__StartDate__c":"2023-08-29","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01tDE00000IIaraYAD"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":228.88,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"802DE00000Ay2bjYAB","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0vDE00000K9OqZYAV","SBQQ__ProrateMultiplier__c":1.90730593607305936073059360730594,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"Quantity + Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000135","SystemModstamp":"2023-08-29T18:36:46.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:46.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:45.000+0000","EndDate":"2025-08-28","ServiceDate":"2023-10-02","TotalPrice":228.88,"ListPrice":120.00,"UnitPrice":228.88,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01uDE00000KVlM6YAL","OrderId":"801DE0000048GS8YAM","IsDeleted":false,"Product2Id":"01tDE00000IIaraYAD","Id":"802DE00000Ay2boYAB","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2boYAB","type":"OrderItem"}},{"Contracts":["800DE000001ls8BYAQ"],"PricebookEntries":[],"Products":["01tDE00000IIaraYAD"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NkWmCIsgf92XbAOGw5g1sQq","Stripe_ID__c":"price_1NkWmCIsgf92XbAOGw5g1sQq","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":240.00,"SBQQ__Subscription__c":"a1BDE000006dVrG2AU","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0vDE00000K9OqTYAV","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":true,"SBQQ__Contract__c":"800DE000001ls8BYAQ","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000134","SystemModstamp":"2023-08-29T18:36:37.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:37.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:25.000+0000","EndDate":"2025-08-28","ServiceDate":"2023-08-29","TotalPrice":240.00,"ListPrice":120.00,"UnitPrice":240.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01uDE00000KVlM6YAL","OrderId":"801DE0000048GS3YAM","IsDeleted":false,"Product2Id":"01tDE00000IIaraYAD","Id":"802DE00000Ay2bjYAB","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2bjYAB","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0"},"Id":"006DE00000wQlANYA0","IsDeleted":false,"AccountId":"001DE000036VQjvYAG","IsPrivate":false,"Name":"REST + Opportunity 2023-08-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:19.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:20.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:20.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-08-29T18:36:19.000+0000","LastReferencedDate":"2023-08-29T18:36:19.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0zDE00000LMv18YAD","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-08-28T07:57:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-28T07:57:21.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-28T07:57:21.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01sDE000008q9JUYAY"],"Opportunities":["006DE00000wQlASYA0"],"Accounts":["001DE000036VQjvYAG"],"OrderItems":["802DE00000Ay2boYAB"],"Quotes":["a0zDE00000LMv1DYAT"],"InitialOrderQuotes":["a0zDE00000LMv18YAD"],"InitialOrderId":["801DE0000048GS3YAM"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0zDE00000LMv18YAD","Id":"800DE000001ls8BYAQ","attributes":{"url":"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ","type":"Contract"}},"SBQQ__AmendedContract__c":"800DE000001ls8BYAQ","Id":"006DE00000wQlASYA0","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":228.88,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":24,"SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-03T06:32:06.000+0000","LastViewedDate":"2023-08-03T06:32:06.000+0000","SystemModstamp":"2023-08-03T06:32:05.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:05.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:32:02.000+0000","TotalAmount":229.21,"OrderNumber":"00001432","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-03T06:32:05.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-09-06","OpportunityId":"0067e00000OCuyqAAD","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaRJWAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nRT8AAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000OCuylAAD"],"Accounts":["0017e00001iaRJWAA2"],"OrderItems":["8027e000001bQxxAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Nav4WIsgf92XbAObbDIH4r0","Stripe_ID__c":"sub_sched_1Nav4WIsgf92XbAObbDIH4r0","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":240.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__PriceCalcStatus__c":"Not + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-29T18:36:47.000+0000","LastViewedDate":"2023-08-29T18:36:47.000+0000","SystemModstamp":"2023-08-29T18:36:46.000+0000","IsDeleted":false,"LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:46.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:45.000+0000","TotalAmount":228.88,"OrderNumber":"00000226","StatusCode":"Activated","ActivatedById":"005DE00000JiwzhYAB","ActivatedDate":"2023-08-29T18:36:46.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-10-02","OpportunityId":"006DE00000wQlASYA0","Pricebook2Id":"01sDE000008q9JUYAY","AccountId":"001DE000036VQjvYAG","OwnerId":"005DE00000JiwzhYAB","Id":"801DE0000048GS8YAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM","type":"Order"}},{"PriceBooks":["01sDE000008q9JUYAY"],"Opportunities":["006DE00000wQlANYA0"],"Accounts":["001DE000036VQjvYAG"],"OrderItems":["802DE00000Ay2bjYAB"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NkWmDIsgf92XbAOynKacn14","Stripe_ID__c":"sub_sched_1NkWmDIsgf92XbAOynKacn14","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":240.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-03T06:31:47.000+0000","LastViewedDate":"2023-08-03T06:31:47.000+0000","SystemModstamp":"2023-08-03T06:31:50.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:31.000+0000","TotalAmount":240.00,"OrderNumber":"00001431","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-03T06:31:33.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-03","OpportunityId":"0067e00000OCuylAAD","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaRJWAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nRT3AAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-29T18:36:35.000+0000","LastViewedDate":"2023-08-29T18:36:35.000+0000","SystemModstamp":"2023-08-29T18:36:36.000+0000","IsDeleted":false,"LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:36.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:24.000+0000","TotalAmount":240.00,"OrderNumber":"00000225","StatusCode":"Activated","ActivatedById":"005DE00000JiwzhYAB","ActivatedDate":"2023-08-29T18:36:25.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-29","OpportunityId":"006DE00000wQlANYA0","Pricebook2Id":"01sDE000008q9JUYAY","AccountId":"001DE000036VQjvYAG","OwnerId":"005DE00000JiwzhYAB","Id":"801DE0000048GS3YAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"HasOptedOutOfFax","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"DoNotCall","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ContractId","sobject_type":"Opportunity","error_message":"Field @@ -5217,10 +5223,10 @@ http_interactions: Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingAddress","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Name","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:48 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%278017e000000nRT8AAM%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%27801DE0000048GS8YAM%27%0A body: encoding: US-ASCII string: '' @@ -5239,12 +5245,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:10 GMT + - Tue, 29 Aug 2023 18:36:49 GMT Set-Cookie: - - BrowserId=eYE9zTHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:10 + - BrowserId=A7CvlUabEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5257,7 +5263,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9872/5000000 + - api-usage=6642/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5266,11 +5272,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM"},"Type":"Amendment","OpportunityId":"0067e00000OCuyqAAD","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD"},"SBQQ__AmendedContract__c":"8007e000001iCWdAAM"}}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM"},"Type":"Amendment","OpportunityId":"006DE00000wQlASYA0","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0"},"SBQQ__AmendedContract__c":"800DE000001ls8BYAQ"}}]}' + recorded_at: Tue, 29 Aug 2023 18:36:49 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20OpportunityId,%20Opportunity.SBQQ__AmendedContract__c,%0A%20%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__r.SBQQ__Quote__c%0AFROM%20Order%0AWHERE%20Id%20=%20%278017e000000nRT8AAM%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20OpportunityId,%20Opportunity.SBQQ__AmendedContract__c,%0A%20%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__r.SBQQ__Quote__c%0AFROM%20Order%0AWHERE%20Id%20=%20%27801DE0000048GS8YAM%27%0A body: encoding: US-ASCII string: '' @@ -5289,12 +5295,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:10 GMT + - Tue, 29 Aug 2023 18:36:49 GMT Set-Cookie: - - BrowserId=ebwkVzHHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:10 + - BrowserId=A9CTqEabEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5307,7 +5313,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9868/5000000 + - api-usage=6643/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5316,11 +5322,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM"},"OpportunityId":"0067e00000OCuyqAAD","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD"},"SBQQ__AmendedContract__c":"8007e000001iCWdAAM","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM"},"SBQQ__Quote__c":"a0z7e00000BDKnFAAX"}}}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM"},"OpportunityId":"006DE00000wQlASYA0","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0"},"SBQQ__AmendedContract__c":"800DE000001ls8BYAQ","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ"},"SBQQ__Quote__c":"a0zDE00000LMv18YAD"}}}]}' + recorded_at: Tue, 29 Aug 2023 18:36:49 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20Order%0AWHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDKnFAAX%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20Order%0AWHERE%20SBQQ__Quote__c%20=%20%27a0zDE00000LMv18YAD%27%0A body: encoding: US-ASCII string: '' @@ -5339,12 +5345,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:10 GMT + - Tue, 29 Aug 2023 18:36:49 GMT Set-Cookie: - - BrowserId=efo-ejHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:10 + - BrowserId=A-kk2kabEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5357,7 +5363,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9873/5000000 + - api-usage=6644/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5366,11 +5372,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM"},"Id":"8017e000000nRT3AAM"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM"},"Id":"801DE0000048GS3YAM"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:49 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20FIELDS(ALL)%20FROM%20Order%0AWHERE%20Opportunity.SBQQ__AmendedContract__c%20=%20%278007e000001iCWdAAM%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20FIELDS(ALL)%20FROM%20Order%0AWHERE%20Opportunity.SBQQ__AmendedContract__c%20=%20%27800DE000001ls8BYAQ%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A body: encoding: US-ASCII string: '' @@ -5389,12 +5395,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:11 GMT + - Tue, 29 Aug 2023 18:36:49 GMT Set-Cookie: - - BrowserId=ei6VEzHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:11 + - BrowserId=BAFm_0abEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5407,7 +5413,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9868/5000000 + - api-usage=6645/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5416,16 +5422,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM"},"Id":"8017e000000nRT8AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuyqAAD","EffectiveDate":"2023-09-06","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T06:32:05.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001432","TotalAmount":229.21,"CreatedDate":"2023-08-03T06:32:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:05.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:32:05.000+0000","LastViewedDate":"2023-08-03T06:32:06.000+0000","LastReferencedDate":"2023-08-03T06:32:06.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM"},"Id":"801DE0000048GS8YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlASYA0","EffectiveDate":"2023-10-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:36:46.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000226","TotalAmount":228.88,"CreatedDate":"2023-08-29T18:36:45.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:46.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:46.000+0000","LastViewedDate":"2023-08-29T18:36:47.000+0000","LastReferencedDate":"2023-08-29T18:36:47.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":229.21,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + Needed","SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":228.88,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:49 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nRT8AAM"]}' + string: '{"order_ids":["801DE0000048GS8YAM"]}' headers: User-Agent: - Faraday v2.4.0 @@ -5443,12 +5449,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:11 GMT + - Tue, 29 Aug 2023 18:36:49 GMT Set-Cookie: - - BrowserId=enyN_THHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:11 + - BrowserId=BBt_e0abEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5468,39 +5474,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD"},"Id":"0067e00000OCuyqAAD","IsDeleted":false,"AccountId":"0017e00001iaRJWAA2","IsPrivate":false,"Name":"Amendment - for contract #00000380","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-03","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:53.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:54.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-03T06:31:53.000+0000","LastReferencedDate":"2023-08-03T06:31:53.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCWdAAM","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKnKAAX","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2"},"Id":"0017e00001iaRJWAA2","IsDeleted":false,"Name":"REST - Account 2023-08-03 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaRJWAA2","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:19.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:37.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:37.000+0000","LastViewedDate":"2023-08-03T06:31:37.000+0000","LastReferencedDate":"2023-08-03T06:31:37.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_ID__c":"cus_ONgRawK9MZNDXo","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ONgRawK9MZNDXo"},{"Accounts":["0017e00001iaRJWAA2"],"Opportunities":["0067e00000OCuyqAAD"],"SBQQ__RegularAmount__c":229.21,"SBQQ__NetAmount__c":229.21,"SBQQ__ListAmount__c":229.21,"SBQQ__CustomerAmount__c":229.21,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-01","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":22,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-09-06","SBQQ__ShippingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__RenewalTerm__c":24,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0067e00000OCuyqAAD","SBQQ__MasterContract__c":"8007e000001iCWdAAM","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-03T06:32:02.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-03T06:31:56.000+0000","SBQQ__EndDate__c":"2025-08-02","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0"},"Id":"006DE00000wQlASYA0","IsDeleted":false,"AccountId":"001DE000036VQjvYAG","IsPrivate":false,"Name":"Amendment + for contract #00000143","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:38.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:38.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:38.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-08-29T18:36:38.000+0000","LastReferencedDate":"2023-08-29T18:36:38.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"800DE000001ls8BYAQ","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0zDE00000LMv1DYAT","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG"},"Id":"001DE000036VQjvYAG","IsDeleted":false,"Name":"REST + Account 2023-08-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/001DE000036VQjvYAG","OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:18.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:28.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:28.000+0000","LastViewedDate":"2023-08-29T18:36:28.000+0000","LastReferencedDate":"2023-08-29T18:36:28.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_ID__c":"cus_OXc0ajKKb0ff11","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OXc0ajKKb0ff11"},{"Accounts":["001DE000036VQjvYAG"],"Opportunities":["006DE00000wQlASYA0"],"SBQQ__RegularAmount__c":228.88,"SBQQ__NetAmount__c":228.88,"SBQQ__ListAmount__c":228.88,"SBQQ__CustomerAmount__c":228.88,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-28","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":22,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-10-02","SBQQ__ShippingName__c":"REST + Account 2023-08-29 00:00:00 UTC","SBQQ__SalesRep__c":"005DE00000JiwzhYAB","SBQQ__RenewalTerm__c":24,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01sDE000008q9JUYAY","SBQQ__PriceBook__c":"01sDE000008q9JUYAY","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"006DE00000wQlASYA0","SBQQ__MasterContract__c":"800DE000001ls8BYAQ","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-29T18:36:45.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-29T18:36:40.000+0000","SBQQ__EndDate__c":"2025-08-28","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__Account__c":"0017e00001iaRJWAA2","LastReferencedDate":"2023-08-03T06:32:02.000+0000","LastViewedDate":"2023-08-03T06:32:02.000+0000","SystemModstamp":"2023-08-03T06:32:02.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:02.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:54.000+0000","Name":"Q-01351","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKnKAAX","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnKAAX","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AtDsAAK"},"Id":"01t7e000009AtDsAAK","Name":"REST - Product2 2023-08-03 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-03T06:31:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:38.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:38.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-08-03T06:31:39.000+0000","LastReferencedDate":"2023-08-03T06:31:39.000+0000","SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-08-29 00:00:00 UTC","SBQQ__Account__c":"001DE000036VQjvYAG","LastReferencedDate":"2023-08-29T18:36:45.000+0000","LastViewedDate":"2023-08-29T18:36:45.000+0000","SystemModstamp":"2023-08-29T18:36:45.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:45.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:38.000+0000","Name":"Q-00127","IsDeleted":false,"OwnerId":"005DE00000JiwzhYAB","Id":"a0zDE00000LMv1DYAT","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv1DYAT","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01tDE00000IIaraYAD"},"Id":"01tDE00000IIaraYAD","Name":"REST + Product2 2023-08-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-08-29T18:36:17.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:29.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:29.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-08-29T18:36:29.000+0000","LastReferencedDate":"2023-08-29T18:36:29.000+0000","SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One per quote line","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_ID__c":"prod_ONgR4MmTQrmCza","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONgR4MmTQrmCza"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IskDGAAZ"},"Id":"01u7e00000IskDGAAZ","Name":"REST - Product2 2023-08-03 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AtDsAAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-03T06:31:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:18.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:18.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM"},"Id":"8007e000001iCWdAAM","AccountId":"0017e00001iaRJWAA2","StartDate":"2023-08-03","EndDate":"2025-08-02","BillingAddress":null,"ContractTerm":24,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000380","CreatedDate":"2023-08-03T06:31:49.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:50.000+0000","LastViewedDate":"2023-08-03T06:31:52.000+0000","LastReferencedDate":"2023-08-03T06:31:52.000+0000","SBQQ__AmendmentRenewalBehavior__c":"Latest - End Date","SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-02","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0067e00000OCuylAAD","SBQQ__Order__c":"8017e000000nRT3AAM","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJeAAM"},"Id":"a0v7e000008xYJeAAM","IsDeleted":false,"Name":"QL-0002992","CreatedDate":"2023-08-03T06:31:55.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:01.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:32:01.000+0000","SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":229.21,"SBQQ__Description__c":"A - great description","SBQQ__Existing__c":true,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":229.21,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":229.21,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IskDGAAZ","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AtDsAAK","SBQQ__ProrateMultiplier__c":1.91004566210045662100456621004566,"SBQQ__ProratedListPrice__c":229.21,"SBQQ__ProratedPrice__c":229.21,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":229.21,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpgradedSubscription__c":"a1B7e00000EX5EWEA1","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":229.21,"SBQQ__EffectiveEndDate__c":"2025-08-02","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-06","SBQQ__EffectiveSubscriptionTerm__c":22,"SBQQ__ListTotal__c":229.21,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":229.21,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":229.21,"SBQQ__PackageTotal__c":229.21,"SBQQ__PartnerTotal__c":229.21,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RegularTotal__c":229.21,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYJYAA2"},"Id":"a0v7e000008xYJYAA2","IsDeleted":false,"Name":"QL-0002990","CreatedDate":"2023-08-03T06:31:29.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:29.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:29.000+0000","SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":240.00,"SBQQ__Description__c":"A - great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":240.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":240.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IskDGAAZ","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AtDsAAK","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":240.00,"SBQQ__ProratedPrice__c":240.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":240.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":240.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-03","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":240.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":240.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":240.00,"SBQQ__PackageTotal__c":240.00,"SBQQ__PartnerTotal__c":240.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RegularTotal__c":240.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5EWEA1"},"Id":"a1B7e00000EX5EWEA1","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000358","CreatedDate":"2023-08-03T06:31:50.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:50.000+0000","SBQQ__Account__c":"0017e00001iaRJWAA2","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCWdAAM","SBQQ__CustomerPrice__c":240.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":240.00,"SBQQ__NetPrice__c":240.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8027e000001bQxxAAE","SBQQ__OriginalQuoteLine__c":"a0v7e000008xYJYAA2","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AtDsAAK","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xYJYAA2","SBQQ__RegularPrice__c":240.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX5EWEA1","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-03","SBQQ__ContractNumber__c":"00000380","SBQQ__EndDate__c":"2025-08-02","SBQQ__ProductId__c":"01t7e000009AtDs","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009AtDs","SBQQ__StartDate__c":"2023-08-03","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009AtDsAAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":229.21,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8027e000001bQxxAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xYJeAAM","SBQQ__ProrateMultiplier__c":1.91004566210045662100456621004566,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"Quantity - Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001463","SystemModstamp":"2023-08-03T06:32:05.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:05.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:32:03.000+0000","EndDate":"2025-08-02","ServiceDate":"2023-09-06","TotalPrice":229.21,"ListPrice":120.00,"UnitPrice":229.21,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IskDGAAZ","OrderId":"8017e000000nRT8AAM","IsDeleted":false,"Product2Id":"01t7e000009AtDsAAK","Id":"8027e000001bQy2AAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQy2AAE","type":"OrderItem"}},{"Contracts":["8007e000001iCWdAAM"],"PricebookEntries":[],"Products":["01t7e000009AtDsAAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1Nav4TIsgf92XbAOY99CE7pt","Stripe_ID__c":"price_1Nav4TIsgf92XbAOY99CE7pt","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":240.00,"SBQQ__Subscription__c":"a1B7e00000EX5EWEA1","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xYJYAA2","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":true,"SBQQ__Contract__c":"8007e000001iCWdAAM","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001462","SystemModstamp":"2023-08-03T06:31:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:31.000+0000","EndDate":"2025-08-02","ServiceDate":"2023-08-03","TotalPrice":240.00,"ListPrice":120.00,"UnitPrice":240.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IskDGAAZ","OrderId":"8017e000000nRT3AAM","IsDeleted":false,"Product2Id":"01t7e000009AtDsAAK","Id":"8027e000001bQxxAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQxxAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuylAAD"},"Id":"0067e00000OCuylAAD","IsDeleted":false,"AccountId":"0017e00001iaRJWAA2","IsPrivate":false,"Name":"REST - Opportunity 2023-08-03 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-03","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:20.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:22.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-03T06:31:20.000+0000","LastReferencedDate":"2023-08-03T06:31:20.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKnFAAX","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000OCuyqAAD"],"Accounts":["0017e00001iaRJWAA2"],"OrderItems":["8027e000001bQy2AAE"],"Quotes":["a0z7e00000BDKnKAAX"],"InitialOrderQuotes":["a0z7e00000BDKnFAAX"],"InitialOrderId":["8017e000000nRT3AAM"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKnFAAX","Id":"8007e000001iCWdAAM","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCWdAAM","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCWdAAM","Id":"0067e00000OCuyqAAD","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuyqAAD","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":229.21,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":24,"SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__PriceCalcStatus__c":"Not + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_ID__c":"prod_OXc05Om0XrosxT","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OXc05Om0XrosxT"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM6YAL"},"Id":"01uDE00000KVlM6YAL","Name":"REST + Product2 2023-08-29 00:00:00 UTC","Pricebook2Id":"01sDE000008q9JUYAY","Product2Id":"01tDE00000IIaraYAD","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-29T18:36:18.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:18.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:18.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ"},"Id":"800DE000001ls8BYAQ","AccountId":"001DE000036VQjvYAG","StartDate":"2023-08-29","EndDate":"2025-08-28","BillingAddress":null,"ContractTerm":24,"OwnerId":"005DE00000JiwzhYAB","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000143","CreatedDate":"2023-08-29T18:36:36.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:37.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:37.000+0000","LastViewedDate":"2023-08-29T18:36:37.000+0000","LastReferencedDate":"2023-08-29T18:36:37.000+0000","SBQQ__AmendmentRenewalBehavior__c":"Latest + End Date","SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-28","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"006DE00000wQlANYA0","SBQQ__Order__c":"801DE0000048GS3YAM","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqZYAV"},"Id":"a0vDE00000K9OqZYAV","IsDeleted":false,"Name":"QL-0000326","CreatedDate":"2023-08-29T18:36:40.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:44.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:44.000+0000","SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":228.88,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":true,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":228.88,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":228.88,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01uDE00000KVlM6YAL","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIaraYAD","SBQQ__ProrateMultiplier__c":1.90730593607305936073059360730594,"SBQQ__ProratedListPrice__c":228.88,"SBQQ__ProratedPrice__c":228.88,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":228.88,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpgradedSubscription__c":"a1BDE000006dVrG2AU","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":228.88,"SBQQ__EffectiveEndDate__c":"2025-08-28","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-10-02","SBQQ__EffectiveSubscriptionTerm__c":22,"SBQQ__ListTotal__c":228.88,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":228.88,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":228.88,"SBQQ__PackageTotal__c":228.88,"SBQQ__PartnerTotal__c":228.88,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RegularTotal__c":228.88,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqTYAV"},"Id":"a0vDE00000K9OqTYAV","IsDeleted":false,"Name":"QL-0000324","CreatedDate":"2023-08-29T18:36:24.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:24.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:24.000+0000","SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":240.00,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":240.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":240.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01uDE00000KVlM6YAL","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIaraYAD","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":240.00,"SBQQ__ProratedPrice__c":240.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":240.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":240.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-29","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":240.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":240.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":240.00,"SBQQ__PackageTotal__c":240.00,"SBQQ__PartnerTotal__c":240.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RegularTotal__c":240.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVrG2AU"},"Id":"a1BDE000006dVrG2AU","OwnerId":"005DE00000JiwzhYAB","IsDeleted":false,"Name":"SUB-0000078","CreatedDate":"2023-08-29T18:36:36.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:37.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:37.000+0000","SBQQ__Account__c":"001DE000036VQjvYAG","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"800DE000001ls8BYAQ","SBQQ__CustomerPrice__c":240.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":240.00,"SBQQ__NetPrice__c":240.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"802DE00000Ay2bjYAB","SBQQ__OriginalQuoteLine__c":"a0vDE00000K9OqTYAV","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIaraYAD","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0vDE00000K9OqTYAV","SBQQ__RegularPrice__c":240.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1BDE000006dVrG2AU","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-08-29","SBQQ__ContractNumber__c":"00000143","SBQQ__EndDate__c":"2025-08-28","SBQQ__ProductId__c":"01tDE00000IIara","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RenewalProductId__c":"01tDE00000IIara","SBQQ__StartDate__c":"2023-08-29","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01tDE00000IIaraYAD"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":228.88,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"802DE00000Ay2bjYAB","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0vDE00000K9OqZYAV","SBQQ__ProrateMultiplier__c":1.90730593607305936073059360730594,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"Quantity + Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000135","SystemModstamp":"2023-08-29T18:36:46.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:46.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:45.000+0000","EndDate":"2025-08-28","ServiceDate":"2023-10-02","TotalPrice":228.88,"ListPrice":120.00,"UnitPrice":228.88,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01uDE00000KVlM6YAL","OrderId":"801DE0000048GS8YAM","IsDeleted":false,"Product2Id":"01tDE00000IIaraYAD","Id":"802DE00000Ay2boYAB","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2boYAB","type":"OrderItem"}},{"Contracts":["800DE000001ls8BYAQ"],"PricebookEntries":[],"Products":["01tDE00000IIaraYAD"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NkWmCIsgf92XbAOGw5g1sQq","Stripe_ID__c":"price_1NkWmCIsgf92XbAOGw5g1sQq","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":240.00,"SBQQ__Subscription__c":"a1BDE000006dVrG2AU","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0vDE00000K9OqTYAV","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":true,"SBQQ__Contract__c":"800DE000001ls8BYAQ","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000134","SystemModstamp":"2023-08-29T18:36:37.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:37.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:25.000+0000","EndDate":"2025-08-28","ServiceDate":"2023-08-29","TotalPrice":240.00,"ListPrice":120.00,"UnitPrice":240.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01uDE00000KVlM6YAL","OrderId":"801DE0000048GS3YAM","IsDeleted":false,"Product2Id":"01tDE00000IIaraYAD","Id":"802DE00000Ay2bjYAB","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2bjYAB","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlANYA0"},"Id":"006DE00000wQlANYA0","IsDeleted":false,"AccountId":"001DE000036VQjvYAG","IsPrivate":false,"Name":"REST + Opportunity 2023-08-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:19.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:20.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:20.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-08-29T18:36:19.000+0000","LastReferencedDate":"2023-08-29T18:36:19.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0zDE00000LMv18YAD","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-08-28T07:57:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-28T07:57:21.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-28T07:57:21.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01sDE000008q9JUYAY"],"Opportunities":["006DE00000wQlASYA0"],"Accounts":["001DE000036VQjvYAG"],"OrderItems":["802DE00000Ay2boYAB"],"Quotes":["a0zDE00000LMv1DYAT"],"InitialOrderQuotes":["a0zDE00000LMv18YAD"],"InitialOrderId":["801DE0000048GS3YAM"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0zDE00000LMv18YAD","Id":"800DE000001ls8BYAQ","attributes":{"url":"/services/data/v58.0/sobjects/Contract/800DE000001ls8BYAQ","type":"Contract"}},"SBQQ__AmendedContract__c":"800DE000001ls8BYAQ","Id":"006DE00000wQlASYA0","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQlASYA0","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":228.88,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":24,"SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-03T06:32:06.000+0000","LastViewedDate":"2023-08-03T06:32:06.000+0000","SystemModstamp":"2023-08-03T06:32:05.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:05.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:32:02.000+0000","TotalAmount":229.21,"OrderNumber":"00001432","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-03T06:32:05.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-09-06","OpportunityId":"0067e00000OCuyqAAD","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaRJWAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nRT8AAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000OCuylAAD"],"Accounts":["0017e00001iaRJWAA2"],"OrderItems":["8027e000001bQxxAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Nav4WIsgf92XbAObbDIH4r0","Stripe_ID__c":"sub_sched_1Nav4WIsgf92XbAObbDIH4r0","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":240.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__PriceCalcStatus__c":"Not + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-29T18:36:47.000+0000","LastViewedDate":"2023-08-29T18:36:47.000+0000","SystemModstamp":"2023-08-29T18:36:46.000+0000","IsDeleted":false,"LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:46.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:45.000+0000","TotalAmount":228.88,"OrderNumber":"00000226","StatusCode":"Activated","ActivatedById":"005DE00000JiwzhYAB","ActivatedDate":"2023-08-29T18:36:46.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-10-02","OpportunityId":"006DE00000wQlASYA0","Pricebook2Id":"01sDE000008q9JUYAY","AccountId":"001DE000036VQjvYAG","OwnerId":"005DE00000JiwzhYAB","Id":"801DE0000048GS8YAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM","type":"Order"}},{"PriceBooks":["01sDE000008q9JUYAY"],"Opportunities":["006DE00000wQlANYA0"],"Accounts":["001DE000036VQjvYAG"],"OrderItems":["802DE00000Ay2bjYAB"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NkWmDIsgf92XbAOynKacn14","Stripe_ID__c":"sub_sched_1NkWmDIsgf92XbAOynKacn14","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":240.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-03T06:31:47.000+0000","LastViewedDate":"2023-08-03T06:31:47.000+0000","SystemModstamp":"2023-08-03T06:31:50.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:31.000+0000","TotalAmount":240.00,"OrderNumber":"00001431","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-03T06:31:33.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-03","OpportunityId":"0067e00000OCuylAAD","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaRJWAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nRT3AAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-29T18:36:35.000+0000","LastViewedDate":"2023-08-29T18:36:35.000+0000","SystemModstamp":"2023-08-29T18:36:36.000+0000","IsDeleted":false,"LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:36.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:24.000+0000","TotalAmount":240.00,"OrderNumber":"00000225","StatusCode":"Activated","ActivatedById":"005DE00000JiwzhYAB","ActivatedDate":"2023-08-29T18:36:25.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-29","OpportunityId":"006DE00000wQlANYA0","Pricebook2Id":"01sDE000008q9JUYAY","AccountId":"001DE000036VQjvYAG","OwnerId":"005DE00000JiwzhYAB","Id":"801DE0000048GS3YAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"HasOptedOutOfFax","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"DoNotCall","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ContractId","sobject_type":"Opportunity","error_message":"Field @@ -5517,10 +5523,10 @@ http_interactions: Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingAddress","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Name","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:50 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278017e000000nRT3AAM%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%27801DE0000048GS3YAM%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -5539,12 +5545,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:14 GMT + - Tue, 29 Aug 2023 18:36:50 GMT Set-Cookie: - - BrowserId=e9-gITHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:14 + - BrowserId=BNP5dEabEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5557,7 +5563,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9874/5000000 + - api-usage=6644/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5566,11 +5572,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM"},"Id":"8017e000000nRT3AAM"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM"},"Id":"801DE0000048GS3YAM"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:50 GMT - request: method: get - uri: https://api.stripe.com/v1/subscriptions/sub_sched_1Nav4WIsgf92XbAObbDIH4r0 + uri: https://api.stripe.com/v1/subscriptions/sub_sched_1NkWmDIsgf92XbAOynKacn14 body: encoding: US-ASCII string: '' @@ -5582,13 +5588,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_iyJ5B2I3vUbykw","request_duration_ms":227}}' + - '{"last_request_metrics":{"request_id":"req_IXPYBkEmjACb6C","request_duration_ms":278}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5603,7 +5609,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:14 GMT + - Tue, 29 Aug 2023 18:36:51 GMT Content-Type: - application/json Content-Length: @@ -5623,13 +5629,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_XY1O0wFEdFvwOE + - req_7mGr8RgIl9go1S Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '7.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5641,16 +5645,16 @@ http_interactions: "error": { "code": "resource_missing", "doc_url": "https://stripe.com/docs/error-codes/resource-missing", - "message": "No such subscription: 'sub_sched_1Nav4WIsgf92XbAObbDIH4r0'", + "message": "No such subscription: 'sub_sched_1NkWmDIsgf92XbAOynKacn14'", "param": "id", - "request_log_url": "https://dashboard.stripe.com/acct_15uapDIsgf92XbAO/test/logs/req_XY1O0wFEdFvwOE?t=1691044334", + "request_log_url": "https://dashboard.stripe.com/acct_15uapDIsgf92XbAO/test/logs/req_7mGr8RgIl9go1S?t=1693334211", "type": "invalid_request_error" } } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:51 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nav4WIsgf92XbAObbDIH4r0 + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWmDIsgf92XbAOynKacn14 body: encoding: US-ASCII string: '' @@ -5662,13 +5666,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_iyJ5B2I3vUbykw","request_duration_ms":227}}' + - '{"last_request_metrics":{"request_id":"req_IXPYBkEmjACb6C","request_duration_ms":278}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5683,11 +5687,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:14 GMT + - Tue, 29 Aug 2023 18:36:51 GMT Content-Type: - application/json Content-Length: - - '2495' + - '2498' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -5703,13 +5707,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_JoIbtITvosKsS1 + - req_WSSSqyU7fQAnMc Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5718,17 +5720,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nav4WIsgf92XbAObbDIH4r0", + "id": "sub_sched_1NkWmDIsgf92XbAOynKacn14", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036770, + "created": 1693334187, "current_phase": { - "end_date": 1754179200, - "start_date": 1691020800 + "end_date": 1756425600, + "start_date": 1693267200 }, - "customer": "cus_ONgRawK9MZNDXo", + "customer": "cus_OXc0ajKKb0ff11", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -5747,8 +5749,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "phases": [ { @@ -5763,29 +5765,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", - "price": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", + "price": "price_1NkWmCIsgf92XbAOGw5g1sQq", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null } @@ -5795,13 +5797,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nav4WIsgf92XbAOhIsiNUaV", - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3" + "subscription": "sub_1NkWmDIsgf92XbAOe8foJ5RW", + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:51 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278017e000000nRT8AAM%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%27801DE0000048GS8YAM%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -5820,12 +5822,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:14 GMT + - Tue, 29 Aug 2023 18:36:51 GMT Set-Cookie: - - BrowserId=fFrq5zHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:14 + - BrowserId=BTgSVUabEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:51 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5838,7 +5840,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9869/5000000 + - api-usage=6642/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5847,11 +5849,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM"},"Id":"8017e000000nRT8AAM"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM"},"Id":"801DE0000048GS8YAM"}]}' + recorded_at: Tue, 29 Aug 2023 18:36:51 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM body: encoding: US-ASCII string: '' @@ -5870,12 +5872,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:15 GMT + - Tue, 29 Aug 2023 18:36:51 GMT Set-Cookie: - - BrowserId=fJz9GDHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:15 + - BrowserId=BU_gAkabEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:51 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5888,9 +5890,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9870/5000000 + - api-usage=6639/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:31:50 GMT + - Tue, 29 Aug 2023 18:36:36 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5899,13 +5901,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT3AAM"},"Id":"8017e000000nRT3AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuylAAD","EffectiveDate":"2023-08-03","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T06:31:33.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001431","TotalAmount":240.0,"CreatedDate":"2023-08-03T06:31:31.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:31:50.000+0000","LastViewedDate":"2023-08-03T06:31:47.000+0000","LastReferencedDate":"2023-08-03T06:31:47.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS3YAM"},"Id":"801DE0000048GS3YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlANYA0","EffectiveDate":"2023-08-29","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:36:25.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000225","TotalAmount":240.0,"CreatedDate":"2023-08-29T18:36:24.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:36.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:36.000+0000","LastViewedDate":"2023-08-29T18:36:35.000+0000","LastReferencedDate":"2023-08-29T18:36:35.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKnFAAX","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1Nav4WIsgf92XbAObbDIH4r0","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Nav4WIsgf92XbAObbDIH4r0"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + Needed","SBQQ__Quote__c":"a0zDE00000LMv18YAD","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NkWmDIsgf92XbAOynKacn14","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NkWmDIsgf92XbAOynKacn14"}' + recorded_at: Tue, 29 Aug 2023 18:36:51 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nav4WIsgf92XbAObbDIH4r0 + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWmDIsgf92XbAOynKacn14 body: encoding: US-ASCII string: '' @@ -5917,13 +5919,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_JoIbtITvosKsS1","request_duration_ms":177}}' + - '{"last_request_metrics":{"request_id":"req_WSSSqyU7fQAnMc","request_duration_ms":233}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5938,11 +5940,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:15 GMT + - Tue, 29 Aug 2023 18:36:52 GMT Content-Type: - application/json Content-Length: - - '2495' + - '2498' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -5958,13 +5960,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_SnELS82dl5QW7x + - req_2f5iAPyYq4Ow0X Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5973,17 +5973,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nav4WIsgf92XbAObbDIH4r0", + "id": "sub_sched_1NkWmDIsgf92XbAOynKacn14", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036770, + "created": 1693334187, "current_phase": { - "end_date": 1754179200, - "start_date": 1691020800 + "end_date": 1756425600, + "start_date": 1693267200 }, - "customer": "cus_ONgRawK9MZNDXo", + "customer": "cus_OXc0ajKKb0ff11", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -6002,8 +6002,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "phases": [ { @@ -6018,29 +6018,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", - "price": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", + "price": "price_1NkWmCIsgf92XbAOGw5g1sQq", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null } @@ -6050,13 +6050,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nav4WIsgf92XbAOhIsiNUaV", - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3" + "subscription": "sub_1NkWmDIsgf92XbAOe8foJ5RW", + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:51 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD body: encoding: US-ASCII string: '' @@ -6075,12 +6075,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:15 GMT + - Tue, 29 Aug 2023 18:36:52 GMT Set-Cookie: - - BrowserId=fPK-UDHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:15 + - BrowserId=BY69-kabEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:52 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6093,9 +6093,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9876/5000000 + - api-usage=6645/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:31:30 GMT + - Tue, 29 Aug 2023 18:36:24 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -6104,15 +6104,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKnFAAX"},"Id":"a0z7e00000BDKnFAAX","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-01350","CreatedDate":"2023-08-03T06:31:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:30.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-03T06:31:30.000+0000","LastReferencedDate":"2023-08-03T06:31:30.000+0000","SBQQ__Account__c":"0017e00001iaRJWAA2","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__BillingPostalCode__c":null,"SBQQ__BillingState__c":null,"SBQQ__BillingStreet__c":null,"SBQQ__ConsumptionRateOverride__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__CustomerDiscount__c":null,"SBQQ__DefaultTemplate__c":null,"SBQQ__DeliveryMethod__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__Distributor__c":null,"SBQQ__DocumentStatus__c":null,"SBQQ__EmailTemplateId__c":null,"SBQQ__EndDate__c":null,"SBQQ__FirstSegmentTermEndDate__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__Introduction__c":null,"SBQQ__Key__c":null,"SBQQ__LastCalculatedOn__c":null,"SBQQ__LastSavedOn__c":"2023-08-03T06:31:30.000+0000","SBQQ__LineItemsGrouped__c":false,"SBQQ__LineItemsPrinted__c":true,"SBQQ__MarkupRate__c":null,"SBQQ__MasterContract__c":null,"SBQQ__MasterEvergreenContract__c":null,"SBQQ__Notes__c":null,"SBQQ__Opportunity2__c":"0067e00000OCuylAAD","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":true,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jIBkVAAW","SBQQ__Primary__c":true,"SBQQ__ProrationDayOfMonth__c":null,"SBQQ__QuoteLanguage__c":null,"SBQQ__QuoteProcessId__c":null,"SBQQ__QuoteTemplateId__c":null,"SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-08-03","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":24.0,"SBQQ__TargetCustomerAmount__c":null,"SBQQ__Type__c":"Quote","SBQQ__Unopened__c":true,"SBQQ__WatermarkShown__c":false,"SBQQ__LineItemCount__c":1.0,"SBQQ__AdditionalDiscountAmount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__DaysQuoteOpen__c":0.0,"SBQQ__ExpirationDate__c":"2023-09-01","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":240.0,"SBQQ__ListAmount__c":240.0,"SBQQ__NetAmount__c":240.0,"SBQQ__RegularAmount__c":240.0}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv18YAD"},"Id":"a0zDE00000LMv18YAD","OwnerId":"005DE00000JiwzhYAB","IsDeleted":false,"Name":"Q-00126","CreatedDate":"2023-08-29T18:36:19.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:24.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:24.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-29T18:36:24.000+0000","LastReferencedDate":"2023-08-29T18:36:24.000+0000","SBQQ__Account__c":"001DE000036VQjvYAG","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-08-29 00:00:00 UTC","SBQQ__BillingPostalCode__c":null,"SBQQ__BillingState__c":null,"SBQQ__BillingStreet__c":null,"SBQQ__ConsumptionRateOverride__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__CustomerDiscount__c":null,"SBQQ__DefaultTemplate__c":null,"SBQQ__DeliveryMethod__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__Distributor__c":null,"SBQQ__DocumentStatus__c":null,"SBQQ__EmailTemplateId__c":null,"SBQQ__EndDate__c":null,"SBQQ__FirstSegmentTermEndDate__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__Introduction__c":null,"SBQQ__Key__c":null,"SBQQ__LastCalculatedOn__c":null,"SBQQ__LastSavedOn__c":"2023-08-29T18:36:24.000+0000","SBQQ__LineItemsGrouped__c":false,"SBQQ__LineItemsPrinted__c":true,"SBQQ__MarkupRate__c":null,"SBQQ__MasterContract__c":null,"SBQQ__MasterEvergreenContract__c":null,"SBQQ__Notes__c":null,"SBQQ__Opportunity2__c":"006DE00000wQlANYA0","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":true,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01sDE000008q9JUYAY","SBQQ__PricebookId__c":"01sDE000008q9JUYAY","SBQQ__PrimaryContact__c":"003DE00002WlR5IYAV","SBQQ__Primary__c":true,"SBQQ__ProrationDayOfMonth__c":null,"SBQQ__QuoteLanguage__c":null,"SBQQ__QuoteProcessId__c":null,"SBQQ__QuoteTemplateId__c":null,"SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SalesRep__c":"005DE00000JiwzhYAB","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-08-29 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-08-29","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":24.0,"SBQQ__TargetCustomerAmount__c":null,"SBQQ__Type__c":"Quote","SBQQ__Unopened__c":true,"SBQQ__WatermarkShown__c":false,"SBQQ__LineItemCount__c":1.0,"SBQQ__AdditionalDiscountAmount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__DaysQuoteOpen__c":0.0,"SBQQ__ExpirationDate__c":"2023-09-28","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":240.0,"SBQQ__ListAmount__c":240.0,"SBQQ__NetAmount__c":240.0,"SBQQ__RegularAmount__c":240.0}' + recorded_at: Tue, 29 Aug 2023 18:36:52 GMT - request: method: get - uri: https://api.stripe.com/v1/products/prod_ONgR4MmTQrmCza + uri: https://api.stripe.com/v1/products/prod_OXc05Om0XrosxT body: encoding: US-ASCII string: '' @@ -6124,13 +6124,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_SnELS82dl5QW7x","request_duration_ms":185}}' + - '{"last_request_metrics":{"request_id":"req_2f5iAPyYq4Ow0X","request_duration_ms":226}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6145,11 +6145,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:16 GMT + - Tue, 29 Aug 2023 18:36:52 GMT Content-Type: - application/json Content-Length: - - '748' + - '749' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6165,13 +6165,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_SDqCLOagL1yiyu + - req_swDgZWgNFgiD13 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6180,36 +6178,36 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONgR4MmTQrmCza", + "id": "prod_OXc05Om0XrosxT", "object": "product", "active": true, "attributes": [], - "created": 1691044297, + "created": 1693334189, "default_price": null, "description": "A great description", "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AtDsAAK", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AtDsAAK" + "salesforce_product2_id": "01tDE00000IIaraYAD", + "salesforce_product2_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01tDE00000IIaraYAD" }, - "name": "REST Product2 2023-08-03 00:00:00 UTC", + "name": "REST Product2 2023-08-29 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-03-000000-utc-44", + "sku": "rest-product2--2023-08-29-000000-utc-31", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691044297, + "updated": 1693334189, "url": null } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:52 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009AtDsAAK%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIaraYAD%27%0A body: encoding: US-ASCII string: '' @@ -6228,12 +6226,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:16 GMT + - Tue, 29 Aug 2023 18:36:52 GMT Set-Cookie: - - BrowserId=fVJDlzHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:16 + - BrowserId=BdFFI0abEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:52 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6246,7 +6244,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9875/5000000 + - api-usage=6640/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6256,10 +6254,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:52 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009AtDsAAK%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIaraYAD%27%0A body: encoding: US-ASCII string: '' @@ -6278,12 +6276,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:17 GMT + - Tue, 29 Aug 2023 18:36:52 GMT Set-Cookie: - - BrowserId=fZJZEzHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:17 + - BrowserId=Bf69gUabEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:52 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6296,7 +6294,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9877/5000000 + - api-usage=6646/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6306,10 +6304,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:52 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQxxAAE%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2bjYAB%27%0A body: encoding: US-ASCII string: '' @@ -6328,12 +6326,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:17 GMT + - Tue, 29 Aug 2023 18:36:53 GMT Set-Cookie: - - BrowserId=fc9iKDHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:17 + - BrowserId=Bhec9UabEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6346,7 +6344,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9878/5000000 + - api-usage=6643/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6356,10 +6354,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:53 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQxxAAE%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2bjYAB%27%0A body: encoding: US-ASCII string: '' @@ -6378,12 +6376,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:17 GMT + - Tue, 29 Aug 2023 18:36:53 GMT Set-Cookie: - - BrowserId=fgohRjHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:17 + - BrowserId=BjG1KkabEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6396,7 +6394,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9871/5000000 + - api-usage=6638/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6406,10 +6404,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:53 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nav4TIsgf92XbAOY99CE7pt?expand%5B%5D=tiers + uri: https://api.stripe.com/v1/prices/price_1NkWmCIsgf92XbAOGw5g1sQq?expand%5B%5D=tiers body: encoding: US-ASCII string: '' @@ -6421,13 +6419,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_SDqCLOagL1yiyu","request_duration_ms":191}}' + - '{"last_request_metrics":{"request_id":"req_swDgZWgNFgiD13","request_duration_ms":236}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6442,11 +6440,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:18 GMT + - Tue, 29 Aug 2023 18:36:53 GMT Content-Type: - application/json Content-Length: - - '850' + - '851' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6462,13 +6460,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_3bjWnXwbx1zn4R + - req_23FRhBSeA8RWhP Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6477,22 +6473,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -6504,13 +6500,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:53 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQxxAAE%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2bjYAB%27%0A body: encoding: US-ASCII string: '' @@ -6529,12 +6525,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:18 GMT + - Tue, 29 Aug 2023 18:36:53 GMT Set-Cookie: - - BrowserId=fl9GjTHHEe6LS-PvDvmLZA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:18 + - BrowserId=Bm4hckabEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6547,7 +6543,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9787/5000000 + - api-usage=6644/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6557,10 +6553,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:53 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nav4TIsgf92XbAOY99CE7pt + uri: https://api.stripe.com/v1/prices/price_1NkWmCIsgf92XbAOGw5g1sQq body: encoding: US-ASCII string: '' @@ -6572,13 +6568,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_3bjWnXwbx1zn4R","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_23FRhBSeA8RWhP","request_duration_ms":207}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6593,11 +6589,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:18 GMT + - Tue, 29 Aug 2023 18:36:53 GMT Content-Type: - application/json Content-Length: - - '850' + - '851' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6613,13 +6609,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_xThNrx8tPVtAeH + - req_wxDZeEK0D7GGpq Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6628,22 +6622,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -6655,13 +6649,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:53 GMT - request: method: get - uri: https://api.stripe.com/v1/products/prod_ONgR4MmTQrmCza + uri: https://api.stripe.com/v1/products/prod_OXc05Om0XrosxT body: encoding: US-ASCII string: '' @@ -6673,13 +6667,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_xThNrx8tPVtAeH","request_duration_ms":167}}' + - '{"last_request_metrics":{"request_id":"req_wxDZeEK0D7GGpq","request_duration_ms":198}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6694,11 +6688,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:18 GMT + - Tue, 29 Aug 2023 18:36:54 GMT Content-Type: - application/json Content-Length: - - '748' + - '749' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6714,13 +6708,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_bUUpVVCbyMAKHS + - req_ILf8iu3HeSfbrk Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6729,36 +6721,36 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONgR4MmTQrmCza", + "id": "prod_OXc05Om0XrosxT", "object": "product", "active": true, "attributes": [], - "created": 1691044297, + "created": 1693334189, "default_price": null, "description": "A great description", "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AtDsAAK", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AtDsAAK" + "salesforce_product2_id": "01tDE00000IIaraYAD", + "salesforce_product2_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01tDE00000IIaraYAD" }, - "name": "REST Product2 2023-08-03 00:00:00 UTC", + "name": "REST Product2 2023-08-29 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-03-000000-utc-44", + "sku": "rest-product2--2023-08-29-000000-utc-31", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691044297, + "updated": 1693334189, "url": null } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:54 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009AtDsAAK%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIaraYAD%27%0A body: encoding: US-ASCII string: '' @@ -6777,12 +6769,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:19 GMT + - Tue, 29 Aug 2023 18:36:54 GMT Set-Cookie: - - BrowserId=ftJTlTHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:19 + - BrowserId=BtEpBkabEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:54 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6795,7 +6787,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9794/5000000 + - api-usage=6641/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6805,10 +6797,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:54 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQy2AAE%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2boYAB%27%0A body: encoding: US-ASCII string: '' @@ -6827,12 +6819,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:22 GMT + - Tue, 29 Aug 2023 18:36:54 GMT Set-Cookie: - - BrowserId=gRSiajHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:22 + - BrowserId=BwCdekabEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:54 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6845,7 +6837,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9790/5000000 + - api-usage=6645/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6855,10 +6847,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:54 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQy2AAE%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2boYAB%27%0A body: encoding: US-ASCII string: '' @@ -6877,12 +6869,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:23 GMT + - Tue, 29 Aug 2023 18:36:54 GMT Set-Cookie: - - BrowserId=gU9hmDHHEe6p-1_cvxAIug; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:23 + - BrowserId=BxoYzUabEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:54 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6895,7 +6887,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9791/5000000 + - api-usage=6640/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6905,13 +6897,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:54 GMT - request: method: post uri: https://api.stripe.com/v1/prices body: encoding: UTF-8 - string: currency=usd&unit_amount_decimal=12000.2366722448&recurring[interval_count]=3&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8027e000001bQy2AAE&metadata[salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQy2AAE&product=prod_ONgR4MmTQrmCza + string: currency=usd&unit_amount_decimal=12000.17237251616&recurring[interval_count]=3&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=802DE00000Ay2boYAB&metadata[salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2boYAB&product=prod_OXc05Om0XrosxT headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -6920,15 +6912,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_bUUpVVCbyMAKHS","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_ILf8iu3HeSfbrk","request_duration_ms":198}}' Idempotency-Key: - - bf8ca0e6-27ee-4afb-925a-54d304f90e34 + - 4e459677-c285-47ee-84e8-839856c3f5f4 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6943,11 +6935,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:23 GMT + - Tue, 29 Aug 2023 18:36:55 GMT Content-Type: - application/json Content-Length: - - '861' + - '863' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6963,19 +6955,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - bf8ca0e6-27ee-4afb-925a-54d304f90e34 + - 4e459677-c285-47ee-84e8-839856c3f5f4 Original-Request: - - req_ioWuMTTWjD4qPp + - req_uBm0ULOU8m73o1 Request-Id: - - req_ioWuMTTWjD4qPp + - req_uBm0ULOU8m73o1 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '37.00000000000001' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6984,22 +6974,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav59Isgf92XbAOs2qCNmh8", + "id": "price_1NkWmZIsgf92XbAORUxmcYHR", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044343, + "created": 1693334215, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE" + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7012,15 +7002,15 @@ http_interactions: "transform_quantity": null, "type": "recurring", "unit_amount": null, - "unit_amount_decimal": "12000.2366722448" + "unit_amount_decimal": "12000.17237251616" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:55 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8027e000001bQy2AAE + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2boYAB body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1Nav59Isgf92XbAOs2qCNmh8"}' + string: '{"Stripe_ID__c":"price_1NkWmZIsgf92XbAORUxmcYHR"}' headers: User-Agent: - Faraday v2.4.0 @@ -7038,12 +7028,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:32:23 GMT + - Tue, 29 Aug 2023 18:36:55 GMT Set-Cookie: - - BrowserId=gaqhBzHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:23 + - BrowserId=B2V5zUabEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:55 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7058,14 +7048,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9795/5000000 + - api-usage=6642/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:55 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nav4TIsgf92XbAOY99CE7pt + uri: https://api.stripe.com/v1/prices/price_1NkWmCIsgf92XbAOGw5g1sQq body: encoding: US-ASCII string: '' @@ -7077,13 +7067,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ioWuMTTWjD4qPp","request_duration_ms":237}}' + - '{"last_request_metrics":{"request_id":"req_uBm0ULOU8m73o1","request_duration_ms":262}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7098,11 +7088,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:25 GMT + - Tue, 29 Aug 2023 18:36:55 GMT Content-Type: - application/json Content-Length: - - '850' + - '851' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7118,13 +7108,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_pKZuNLua5rXzAv + - req_SgJfDJ5sD4P3L2 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7133,22 +7121,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7160,13 +7148,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:55 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONgRawK9MZNDXo?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OXc0ajKKb0ff11?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -7178,13 +7166,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_pKZuNLua5rXzAv","request_duration_ms":177}}' + - '{"last_request_metrics":{"request_id":"req_SgJfDJ5sD4P3L2","request_duration_ms":257}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7199,11 +7187,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:25 GMT + - Tue, 29 Aug 2023 18:36:55 GMT Content-Type: - application/json Content-Length: - - '1090' + - '1091' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7219,13 +7207,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_lNtFJdVnFY1IyX + - req_rDmmv9bo7AJlGZ Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7234,11 +7220,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONgRawK9MZNDXo", + "id": "cus_OXc0ajKKb0ff11", "object": "customer", "address": null, "balance": 0, - "created": 1691036770, + "created": 1693334187, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -7246,7 +7232,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "95A6DA24", + "invoice_prefix": "21213D18", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7255,30 +7241,30 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaRJWAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaRJWAA2" + "salesforce_account_id": "001DE000036VQjvYAG", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjvYAG" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", + "name": "REST Account 2023-08-29 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], "shipping": null, "tax_exempt": "none", "test_clock": { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691036770, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693334187, "livemode": false, "name": null, "status": "ready" } } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:55 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nav4TIsgf92XbAOY99CE7pt + uri: https://api.stripe.com/v1/prices/price_1NkWmCIsgf92XbAOGw5g1sQq body: encoding: US-ASCII string: '' @@ -7290,13 +7276,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_lNtFJdVnFY1IyX","request_duration_ms":202}}' + - '{"last_request_metrics":{"request_id":"req_rDmmv9bo7AJlGZ","request_duration_ms":214}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7311,11 +7297,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:25 GMT + - Tue, 29 Aug 2023 18:36:56 GMT Content-Type: - application/json Content-Length: - - '850' + - '851' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7331,13 +7317,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_dF3hUu6Xy19ymi + - req_QVb6vaYqdU1rZV Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7346,22 +7330,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7373,13 +7357,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:56 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nav59Isgf92XbAOs2qCNmh8 + uri: https://api.stripe.com/v1/prices/price_1NkWmZIsgf92XbAORUxmcYHR body: encoding: US-ASCII string: '' @@ -7391,13 +7375,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dF3hUu6Xy19ymi","request_duration_ms":180}}' + - '{"last_request_metrics":{"request_id":"req_QVb6vaYqdU1rZV","request_duration_ms":212}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7412,11 +7396,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:25 GMT + - Tue, 29 Aug 2023 18:36:56 GMT Content-Type: - application/json Content-Length: - - '861' + - '863' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7432,13 +7416,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_bmf0W0m3wHE5sb + - req_HIHbgBagb5auCG Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7447,22 +7429,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav59Isgf92XbAOs2qCNmh8", + "id": "price_1NkWmZIsgf92XbAORUxmcYHR", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044343, + "created": 1693334215, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE" + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7475,12 +7457,12 @@ http_interactions: "transform_quantity": null, "type": "recurring", "unit_amount": null, - "unit_amount_decimal": "12000.2366722448" + "unit_amount_decimal": "12000.17237251616" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:56 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM body: encoding: US-ASCII string: '' @@ -7499,12 +7481,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:25 GMT + - Tue, 29 Aug 2023 18:36:56 GMT Set-Cookie: - - BrowserId=guTOKTHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:25 + - BrowserId=CB0KCkabEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:56 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7517,9 +7499,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9797/5000000 + - api-usage=6643/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:32:05 GMT + - Tue, 29 Aug 2023 18:36:46 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7528,16 +7510,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM"},"Id":"8017e000000nRT8AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuyqAAD","EffectiveDate":"2023-09-06","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T06:32:05.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001432","TotalAmount":229.21,"CreatedDate":"2023-08-03T06:32:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:05.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:32:05.000+0000","LastViewedDate":"2023-08-03T06:32:24.000+0000","LastReferencedDate":"2023-08-03T06:32:24.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM"},"Id":"801DE0000048GS8YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlASYA0","EffectiveDate":"2023-10-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:36:46.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000226","TotalAmount":228.88,"CreatedDate":"2023-08-29T18:36:45.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:46.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:46.000+0000","LastViewedDate":"2023-08-29T18:36:55.000+0000","LastReferencedDate":"2023-08-29T18:36:55.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":229.21,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + Needed","SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":228.88,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Tue, 29 Aug 2023 18:36:56 GMT - request: method: post uri: https://api.stripe.com/v1/prices body: encoding: UTF-8 - string: billing_scheme=per_unit¤cy=usd&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8027e000001bQy2AAE&metadata[salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQy2AAE&metadata[salesforce_duplicate]=true&metadata[salesforce_original_stripe_price_id]=price_1Nav59Isgf92XbAOs2qCNmh8&metadata[salesforce_proration]=true&product=prod_ONgR4MmTQrmCza&tax_behavior=unspecified&unit_amount_decimal=1920.585823571599 + string: billing_scheme=per_unit¤cy=usd&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=802DE00000Ay2boYAB&metadata[salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2boYAB&metadata[salesforce_duplicate]=true&metadata[salesforce_original_stripe_price_id]=price_1NkWmZIsgf92XbAORUxmcYHR&metadata[salesforce_proration]=true&product=prod_OXc05Om0XrosxT&tax_behavior=unspecified&unit_amount_decimal=1887.69834809672 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7546,15 +7528,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_bmf0W0m3wHE5sb","request_duration_ms":173}}' + - '{"last_request_metrics":{"request_id":"req_HIHbgBagb5auCG","request_duration_ms":203}}' Idempotency-Key: - - cf70f173-f8c5-4cd4-9626-fb0d79da693b + - 80b484d6-8b0b-4336-9959-21c09f6a76f1 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7569,7 +7551,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:26 GMT + - Tue, 29 Aug 2023 18:36:56 GMT Content-Type: - application/json Content-Length: @@ -7589,19 +7571,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - cf70f173-f8c5-4cd4-9626-fb0d79da693b + - 80b484d6-8b0b-4336-9959-21c09f6a76f1 Original-Request: - - req_ipHvJuTTe3idkD + - req_wWUdMB9pUXkhnC Request-Id: - - req_ipHvJuTTe3idkD + - req_wWUdMB9pUXkhnC Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '31.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7610,11 +7590,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav5CIsgf92XbAOSugHdR5q", + "id": "price_1NkWmaIsgf92XbAOdkxYdcgr", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044346, + "created": 1693334216, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -7622,25 +7602,25 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE", - "salesforce_original_stripe_price_id": "price_1Nav59Isgf92XbAOs2qCNmh8", + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB", + "salesforce_original_stripe_price_id": "price_1NkWmZIsgf92XbAORUxmcYHR", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, "transform_quantity": null, "type": "one_time", "unit_amount": null, - "unit_amount_decimal": "1920.585823571599" + "unit_amount_decimal": "1887.69834809672" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:56 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONgRawK9MZNDXo?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OXc0ajKKb0ff11?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -7652,13 +7632,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ipHvJuTTe3idkD","request_duration_ms":241}}' + - '{"last_request_metrics":{"request_id":"req_wWUdMB9pUXkhnC","request_duration_ms":269}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7673,11 +7653,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:26 GMT + - Tue, 29 Aug 2023 18:36:57 GMT Content-Type: - application/json Content-Length: - - '1090' + - '1091' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7693,13 +7673,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_mvBaSu09uXTNbS + - req_6p13SdKsRZ5eYI Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7708,11 +7686,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONgRawK9MZNDXo", + "id": "cus_OXc0ajKKb0ff11", "object": "customer", "address": null, "balance": 0, - "created": 1691036770, + "created": 1693334187, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -7720,7 +7698,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "95A6DA24", + "invoice_prefix": "21213D18", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7729,33 +7707,33 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaRJWAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaRJWAA2" + "salesforce_account_id": "001DE000036VQjvYAG", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjvYAG" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", + "name": "REST Account 2023-08-29 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], "shipping": null, "tax_exempt": "none", "test_clock": { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691036770, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693334187, "livemode": false, "name": null, "status": "ready" } } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:56 GMT - request: method: post - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nav4WIsgf92XbAObbDIH4r0 + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWmDIsgf92XbAOynKacn14 body: encoding: UTF-8 - string: phases[0][currency]=usd&phases[0][end_date]=1693958400&phases[0][items][0][billing_thresholds]=&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bQxxAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQxxAAE&phases[0][items][0][plan]=price_1Nav4TIsgf92XbAOY99CE7pt&phases[0][items][0][price]=price_1Nav4TIsgf92XbAOY99CE7pt&phases[0][items][0][quantity]=1&phases[0][metadata][salesforce_order_id]=8017e000000nRT3AAM&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nRT3AAM&phases[0][proration_behavior]=create_prorations&phases[0][start_date]=1691020800&phases[1][add_invoice_items][0][metadata][salesforce_order_item_id]=8027e000001bQy2AAE&phases[1][add_invoice_items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQy2AAE&phases[1][add_invoice_items][0][metadata][salesforce_proration]=true&phases[1][add_invoice_items][0][quantity]=1&phases[1][add_invoice_items][0][price]=price_1Nav5CIsgf92XbAOSugHdR5q&phases[1][add_invoice_items][0][period][end][type]=subscription_period_end&phases[1][add_invoice_items][0][period][start][type]=phase_start&phases[1][items][0][price]=price_1Nav4TIsgf92XbAOY99CE7pt&phases[1][items][0][metadata][salesforce_order_item_id]=8027e000001bQxxAAE&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQxxAAE&phases[1][items][0][quantity]=1&phases[1][items][1][price]=price_1Nav59Isgf92XbAOs2qCNmh8&phases[1][items][1][metadata][salesforce_order_item_id]=8027e000001bQy2AAE&phases[1][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQy2AAE&phases[1][items][1][quantity]=1&phases[1][proration_behavior]=none&phases[1][metadata][salesforce_order_id]=8017e000000nRT8AAM&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nRT8AAM&phases[1][start_date]=1693958400&phases[1][end_date]=1754179200&proration_behavior=none + string: phases[0][currency]=usd&phases[0][end_date]=1696204800&phases[0][items][0][billing_thresholds]=&phases[0][items][0][metadata][salesforce_order_item_id]=802DE00000Ay2bjYAB&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2bjYAB&phases[0][items][0][plan]=price_1NkWmCIsgf92XbAOGw5g1sQq&phases[0][items][0][price]=price_1NkWmCIsgf92XbAOGw5g1sQq&phases[0][items][0][quantity]=1&phases[0][metadata][salesforce_order_id]=801DE0000048GS3YAM&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F801DE0000048GS3YAM&phases[0][proration_behavior]=create_prorations&phases[0][start_date]=1693267200&phases[1][add_invoice_items][0][metadata][salesforce_order_item_id]=802DE00000Ay2boYAB&phases[1][add_invoice_items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2boYAB&phases[1][add_invoice_items][0][metadata][salesforce_proration]=true&phases[1][add_invoice_items][0][quantity]=1&phases[1][add_invoice_items][0][price]=price_1NkWmaIsgf92XbAOdkxYdcgr&phases[1][add_invoice_items][0][period][end][type]=subscription_period_end&phases[1][add_invoice_items][0][period][start][type]=phase_start&phases[1][items][0][price]=price_1NkWmCIsgf92XbAOGw5g1sQq&phases[1][items][0][metadata][salesforce_order_item_id]=802DE00000Ay2bjYAB&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2bjYAB&phases[1][items][0][quantity]=1&phases[1][items][1][price]=price_1NkWmZIsgf92XbAORUxmcYHR&phases[1][items][1][metadata][salesforce_order_item_id]=802DE00000Ay2boYAB&phases[1][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2boYAB&phases[1][items][1][quantity]=1&phases[1][proration_behavior]=none&phases[1][metadata][salesforce_order_id]=801DE0000048GS8YAM&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F801DE0000048GS8YAM&phases[1][start_date]=1696204800&phases[1][end_date]=1756425600&proration_behavior=none headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7764,15 +7742,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_mvBaSu09uXTNbS","request_duration_ms":180}}' + - '{"last_request_metrics":{"request_id":"req_6p13SdKsRZ5eYI","request_duration_ms":235}}' Idempotency-Key: - - 44801494-ebcd-4136-a49f-3dcd6f20db98 + - 18aac4f3-6500-47fa-869d-60f6aee4b562 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7787,11 +7765,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:27 GMT + - Tue, 29 Aug 2023 18:36:57 GMT Content-Type: - application/json Content-Length: - - '4900' + - '4907' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7807,19 +7785,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 44801494-ebcd-4136-a49f-3dcd6f20db98 + - 18aac4f3-6500-47fa-869d-60f6aee4b562 Original-Request: - - req_dUrEh82QWjjQ7y + - req_pXAqe1qXFo2lfT Request-Id: - - req_dUrEh82QWjjQ7y + - req_pXAqe1qXFo2lfT Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '438.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7828,17 +7804,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nav4WIsgf92XbAObbDIH4r0", + "id": "sub_sched_1NkWmDIsgf92XbAOynKacn14", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036770, + "created": 1693334187, "current_phase": { - "end_date": 1693958400, - "start_date": 1691020800 + "end_date": 1696204800, + "start_date": 1693267200 }, - "customer": "cus_ONgRawK9MZNDXo", + "customer": "cus_OXc0ajKKb0ff11", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7860,8 +7836,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "phases": [ { @@ -7876,29 +7852,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1693958400, + "end_date": 1696204800, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", - "price": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", + "price": "price_1NkWmCIsgf92XbAOGw5g1sQq", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null }, @@ -7907,8 +7883,8 @@ http_interactions: { "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE", + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB", "salesforce_proration": "true" }, "period": { @@ -7919,7 +7895,7 @@ http_interactions: "type": "phase_start" } }, - "price": "price_1Nav5CIsgf92XbAOSugHdR5q", + "price": "price_1NkWmaIsgf92XbAOdkxYdcgr", "quantity": 1, "tax_rates": [] } @@ -7934,18 +7910,18 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", - "price": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", + "price": "price_1NkWmCIsgf92XbAOGw5g1sQq", "quantity": 1, "tax_rates": [] }, @@ -7953,22 +7929,22 @@ http_interactions: "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE" + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB" }, - "plan": "price_1Nav59Isgf92XbAOs2qCNmh8", - "price": "price_1Nav59Isgf92XbAOs2qCNmh8", + "plan": "price_1NkWmZIsgf92XbAORUxmcYHR", + "price": "price_1NkWmZIsgf92XbAORUxmcYHR", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT8AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT8AAM" + "salesforce_order_id": "801DE0000048GS8YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS8YAM" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1693958400, + "start_date": 1696204800, "transfer_data": null, "trial_end": null } @@ -7978,16 +7954,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nav4WIsgf92XbAOhIsiNUaV", - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3" + "subscription": "sub_1NkWmDIsgf92XbAOe8foJ5RW", + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:57 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1Nav4WIsgf92XbAObbDIH4r0"}' + string: '{"Stripe_ID__c":"sub_sched_1NkWmDIsgf92XbAOynKacn14"}' headers: User-Agent: - Faraday v2.4.0 @@ -8005,12 +7981,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 06:32:27 GMT + - Tue, 29 Aug 2023 18:36:58 GMT Set-Cookie: - - BrowserId=g97lvDHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:27 + - BrowserId=CQuv50abEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:58 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8025,18 +8001,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9796/5000000 + - api-usage=6654/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:58 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nRT8AAM-8017e000000nRT8AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/801DE0000048GS8YAM-801DE0000048GS8YAM body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nRT8AAM","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nRT8AAM","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1Nav4WIsgf92XbAObbDIH4r0","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"801DE0000048GS8YAM","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"801DE0000048GS8YAM","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync + Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NkWmDIsgf92XbAOynKacn14","Resolution_Status__c":"Success"}' headers: User-Agent: - Faraday v2.4.0 @@ -8054,12 +8030,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 06:32:28 GMT + - Tue, 29 Aug 2023 18:36:58 GMT Set-Cookie: - - BrowserId=hFdKQTHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:28 + - BrowserId=CTcsnEabEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:58 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8072,20 +8048,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9798/5000000 + - api-usage=6646/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002Gs7eEAC" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1WDE000003traK2AQ" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002Gs7eEAC","success":true,"errors":[],"created":true}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"id":"a1WDE000003traK2AQ","success":true,"errors":[],"created":true}' + recorded_at: Tue, 29 Aug 2023 18:36:58 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nav4WIsgf92XbAObbDIH4r0?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWmDIsgf92XbAOynKacn14?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -8097,13 +8073,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dUrEh82QWjjQ7y","request_duration_ms":721}}' + - '{"last_request_metrics":{"request_id":"req_pXAqe1qXFo2lfT","request_duration_ms":871}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8118,11 +8094,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:28 GMT + - Tue, 29 Aug 2023 18:36:58 GMT Content-Type: - application/json Content-Length: - - '9373' + - '9384' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -8138,13 +8114,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_LqoTZhyWHBRQGx + - req_RAYDeo37Uyw9ed Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8153,17 +8127,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nav4WIsgf92XbAObbDIH4r0", + "id": "sub_sched_1NkWmDIsgf92XbAOynKacn14", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036770, + "created": 1693334187, "current_phase": { - "end_date": 1693958400, - "start_date": 1691020800 + "end_date": 1696204800, + "start_date": 1693267200 }, - "customer": "cus_ONgRawK9MZNDXo", + "customer": "cus_OXc0ajKKb0ff11", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -8185,8 +8159,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "phases": [ { @@ -8201,34 +8175,34 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1693958400, + "end_date": 1696204800, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", "price": { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -8240,20 +8214,20 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" }, "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null }, @@ -8262,8 +8236,8 @@ http_interactions: { "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE", + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB", "salesforce_proration": "true" }, "period": { @@ -8275,11 +8249,11 @@ http_interactions: } }, "price": { - "id": "price_1Nav5CIsgf92XbAOSugHdR5q", + "id": "price_1NkWmaIsgf92XbAOdkxYdcgr", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044346, + "created": 1693334216, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -8287,20 +8261,20 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE", - "salesforce_original_stripe_price_id": "price_1Nav59Isgf92XbAOs2qCNmh8", + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB", + "salesforce_original_stripe_price_id": "price_1NkWmZIsgf92XbAORUxmcYHR", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, "transform_quantity": null, "type": "one_time", "unit_amount": null, - "unit_amount_decimal": "1920.585823571599" + "unit_amount_decimal": "1887.69834809672" }, "quantity": 1, "tax_rates": [] @@ -8316,34 +8290,34 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", "price": { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -8355,8 +8329,8 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" }, "quantity": 1, "tax_rates": [] @@ -8365,27 +8339,27 @@ http_interactions: "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE" + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB" }, - "plan": "price_1Nav59Isgf92XbAOs2qCNmh8", + "plan": "price_1NkWmZIsgf92XbAORUxmcYHR", "price": { - "id": "price_1Nav59Isgf92XbAOs2qCNmh8", + "id": "price_1NkWmZIsgf92XbAORUxmcYHR", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044343, + "created": 1693334215, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE" + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -8398,19 +8372,19 @@ http_interactions: "transform_quantity": null, "type": "recurring", "unit_amount": null, - "unit_amount_decimal": "12000.2366722448" + "unit_amount_decimal": "12000.17237251616" }, "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT8AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT8AAM" + "salesforce_order_id": "801DE0000048GS8YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS8YAM" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1693958400, + "start_date": 1696204800, "transfer_data": null, "trial_end": null } @@ -8420,13 +8394,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nav4WIsgf92XbAOhIsiNUaV", - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3" + "subscription": "sub_1NkWmDIsgf92XbAOe8foJ5RW", + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:58 GMT - request: method: post - uri: https://api.stripe.com/v1/prices/price_1Nav59Isgf92XbAOs2qCNmh8 + uri: https://api.stripe.com/v1/prices/price_1NkWmZIsgf92XbAORUxmcYHR body: encoding: UTF-8 string: active=false @@ -8438,15 +8412,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_LqoTZhyWHBRQGx","request_duration_ms":201}}' + - '{"last_request_metrics":{"request_id":"req_RAYDeo37Uyw9ed","request_duration_ms":252}}' Idempotency-Key: - - ac998b99-9342-4a37-877b-8215cb740e2d + - c194270e-925e-4bf2-b608-7efedfd81b7f Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8461,11 +8435,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:28 GMT + - Tue, 29 Aug 2023 18:36:58 GMT Content-Type: - application/json Content-Length: - - '862' + - '864' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -8481,19 +8455,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - ac998b99-9342-4a37-877b-8215cb740e2d + - c194270e-925e-4bf2-b608-7efedfd81b7f Original-Request: - - req_40mji0OLH2TVtf + - req_8qHtY5ssD9q3DY Request-Id: - - req_40mji0OLH2TVtf + - req_8qHtY5ssD9q3DY Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '35.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8502,22 +8474,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav59Isgf92XbAOs2qCNmh8", + "id": "price_1NkWmZIsgf92XbAORUxmcYHR", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044343, + "created": 1693334215, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE" + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -8530,12 +8502,12 @@ http_interactions: "transform_quantity": null, "type": "recurring", "unit_amount": null, - "unit_amount_decimal": "12000.2366722448" + "unit_amount_decimal": "12000.17237251616" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:58 GMT - request: method: post - uri: https://api.stripe.com/v1/prices/price_1Nav5CIsgf92XbAOSugHdR5q + uri: https://api.stripe.com/v1/prices/price_1NkWmaIsgf92XbAOdkxYdcgr body: encoding: UTF-8 string: active=false @@ -8547,15 +8519,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_40mji0OLH2TVtf","request_duration_ms":245}}' + - '{"last_request_metrics":{"request_id":"req_8qHtY5ssD9q3DY","request_duration_ms":275}}' Idempotency-Key: - - 960b21c4-7a8f-4f11-9afa-e23e8e570077 + - 4d34c4a8-cfc2-454d-bffa-a93b648391cd Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8570,7 +8542,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:29 GMT + - Tue, 29 Aug 2023 18:36:59 GMT Content-Type: - application/json Content-Length: @@ -8590,19 +8562,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 960b21c4-7a8f-4f11-9afa-e23e8e570077 + - 4d34c4a8-cfc2-454d-bffa-a93b648391cd Original-Request: - - req_Y573DGeqUTDNV9 + - req_LhMt1T2jjhM9DH Request-Id: - - req_Y573DGeqUTDNV9 + - req_LhMt1T2jjhM9DH Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '37.00000000000001' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8611,11 +8581,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav5CIsgf92XbAOSugHdR5q", + "id": "price_1NkWmaIsgf92XbAOdkxYdcgr", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044346, + "created": 1693334216, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -8623,25 +8593,25 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE", - "salesforce_original_stripe_price_id": "price_1Nav59Isgf92XbAOs2qCNmh8", + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB", + "salesforce_original_stripe_price_id": "price_1NkWmZIsgf92XbAORUxmcYHR", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, "transform_quantity": null, "type": "one_time", "unit_amount": null, - "unit_amount_decimal": "1920.585823571599" + "unit_amount_decimal": "1887.69834809672" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:59 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM body: encoding: US-ASCII string: '' @@ -8660,12 +8630,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:29 GMT + - Tue, 29 Aug 2023 18:36:59 GMT Set-Cookie: - - BrowserId=hQadOjHHEe69Yvfsj4m8lQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:29 + - BrowserId=CdDUokabEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:36:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:36:59 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8678,9 +8648,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9881/5000000 + - api-usage=6652/5000000 Last-Modified: - - Thu, 03 Aug 2023 06:32:27 GMT + - Tue, 29 Aug 2023 18:36:58 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8689,13 +8659,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRT8AAM"},"Id":"8017e000000nRT8AAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaRJWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuyqAAD","EffectiveDate":"2023-09-06","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T06:32:05.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001432","TotalAmount":229.21,"CreatedDate":"2023-08-03T06:32:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:32:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T06:32:27.000+0000","LastViewedDate":"2023-08-03T06:32:27.000+0000","LastReferencedDate":"2023-08-03T06:32:27.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GS8YAM"},"Id":"801DE0000048GS8YAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjvYAG","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQlASYA0","EffectiveDate":"2023-10-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:36:46.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000226","TotalAmount":228.88,"CreatedDate":"2023-08-29T18:36:45.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:58.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:36:58.000+0000","LastViewedDate":"2023-08-29T18:36:58.000+0000","LastReferencedDate":"2023-08-29T18:36:58.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKnKAAX","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":229.21,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1Nav4WIsgf92XbAObbDIH4r0","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Nav4WIsgf92XbAObbDIH4r0"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + Needed","SBQQ__Quote__c":"a0zDE00000LMv1DYAT","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":228.88,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NkWmDIsgf92XbAOynKacn14","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NkWmDIsgf92XbAOynKacn14"}' + recorded_at: Tue, 29 Aug 2023 18:36:59 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nav4WIsgf92XbAObbDIH4r0 + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWmDIsgf92XbAOynKacn14 body: encoding: US-ASCII string: '' @@ -8707,13 +8677,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Y573DGeqUTDNV9","request_duration_ms":234}}' + - '{"last_request_metrics":{"request_id":"req_LhMt1T2jjhM9DH","request_duration_ms":263}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8728,11 +8698,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:29 GMT + - Tue, 29 Aug 2023 18:36:59 GMT Content-Type: - application/json Content-Length: - - '4900' + - '4907' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -8748,13 +8718,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_4yCvURpTHcku8c + - req_D3ASxXoDH6uIEo Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8763,17 +8731,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nav4WIsgf92XbAObbDIH4r0", + "id": "sub_sched_1NkWmDIsgf92XbAOynKacn14", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036770, + "created": 1693334187, "current_phase": { - "end_date": 1693958400, - "start_date": 1691020800 + "end_date": 1696204800, + "start_date": 1693267200 }, - "customer": "cus_ONgRawK9MZNDXo", + "customer": "cus_OXc0ajKKb0ff11", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -8795,8 +8763,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "phases": [ { @@ -8811,29 +8779,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1693958400, + "end_date": 1696204800, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", - "price": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", + "price": "price_1NkWmCIsgf92XbAOGw5g1sQq", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT3AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT3AAM" + "salesforce_order_id": "801DE0000048GS3YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS3YAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null }, @@ -8842,8 +8810,8 @@ http_interactions: { "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE", + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB", "salesforce_proration": "true" }, "period": { @@ -8854,7 +8822,7 @@ http_interactions: "type": "phase_start" } }, - "price": "price_1Nav5CIsgf92XbAOSugHdR5q", + "price": "price_1NkWmaIsgf92XbAOdkxYdcgr", "quantity": 1, "tax_rates": [] } @@ -8869,18 +8837,18 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, - "plan": "price_1Nav4TIsgf92XbAOY99CE7pt", - "price": "price_1Nav4TIsgf92XbAOY99CE7pt", + "plan": "price_1NkWmCIsgf92XbAOGw5g1sQq", + "price": "price_1NkWmCIsgf92XbAOGw5g1sQq", "quantity": 1, "tax_rates": [] }, @@ -8888,22 +8856,22 @@ http_interactions: "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE" + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB" }, - "plan": "price_1Nav59Isgf92XbAOs2qCNmh8", - "price": "price_1Nav59Isgf92XbAOs2qCNmh8", + "plan": "price_1NkWmZIsgf92XbAORUxmcYHR", + "price": "price_1NkWmZIsgf92XbAORUxmcYHR", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRT8AAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRT8AAM" + "salesforce_order_id": "801DE0000048GS8YAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GS8YAM" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1693958400, + "start_date": 1696204800, "transfer_data": null, "trial_end": null } @@ -8913,13 +8881,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nav4WIsgf92XbAOhIsiNUaV", - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3" + "subscription": "sub_1NkWmDIsgf92XbAOe8foJ5RW", + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:59 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nav4TIsgf92XbAOY99CE7pt + uri: https://api.stripe.com/v1/prices/price_1NkWmCIsgf92XbAOGw5g1sQq body: encoding: US-ASCII string: '' @@ -8931,13 +8899,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_4yCvURpTHcku8c","request_duration_ms":184}}' + - '{"last_request_metrics":{"request_id":"req_D3ASxXoDH6uIEo","request_duration_ms":244}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8952,11 +8920,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:29 GMT + - Tue, 29 Aug 2023 18:36:59 GMT Content-Type: - application/json Content-Length: - - '850' + - '851' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -8972,13 +8940,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_NLKha5Yjsnkoji + - req_OaBKLgeYga7k9R Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8987,22 +8953,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -9014,13 +8980,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:59 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nav5CIsgf92XbAOSugHdR5q + uri: https://api.stripe.com/v1/prices/price_1NkWmaIsgf92XbAOdkxYdcgr body: encoding: US-ASCII string: '' @@ -9032,13 +8998,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_NLKha5Yjsnkoji","request_duration_ms":169}}' + - '{"last_request_metrics":{"request_id":"req_OaBKLgeYga7k9R","request_duration_ms":196}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9053,7 +9019,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:30 GMT + - Tue, 29 Aug 2023 18:37:00 GMT Content-Type: - application/json Content-Length: @@ -9073,13 +9039,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_WYO69FphUcSdcU + - req_NxF0Fsf29Jxgzm Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9088,11 +9052,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nav5CIsgf92XbAOSugHdR5q", + "id": "price_1NkWmaIsgf92XbAOdkxYdcgr", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044346, + "created": 1693334216, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -9100,25 +9064,25 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE", - "salesforce_original_stripe_price_id": "price_1Nav59Isgf92XbAOs2qCNmh8", + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB", + "salesforce_original_stripe_price_id": "price_1NkWmZIsgf92XbAORUxmcYHR", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, "transform_quantity": null, "type": "one_time", "unit_amount": null, - "unit_amount_decimal": "1920.585823571599" + "unit_amount_decimal": "1887.69834809672" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:36:59 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG body: encoding: US-ASCII string: '' @@ -9137,12 +9101,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 06:32:30 GMT + - Tue, 29 Aug 2023 18:37:00 GMT Set-Cookie: - - BrowserId=hZNz8jHHEe6qJzWmP2yvPw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 06:32:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 06:32:30 + - BrowserId=ClCLlkabEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:37:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:37:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:37:00 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9155,11 +9119,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=9901/5000000 + - api-usage=6652/5000000 Etag: - '"G1Nv+Sb4ET8yi4FNWG9QT/ZcEmJXKJ6PxWEsxnJOmzw=--gzip"' Last-Modified: - - Thu, 03 Aug 2023 06:31:37 GMT + - Tue, 29 Aug 2023 18:36:28 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -9168,13 +9132,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaRJWAA2"},"Id":"0017e00001iaRJWAA2","IsDeleted":false,"MasterRecordId":null,"Name":"REST - Account 2023-08-03 00:00:00 UTC","Type":null,"ParentId":null,"BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Phone":null,"Fax":null,"AccountNumber":null,"Website":null,"PhotoUrl":"/services/images/photo/0017e00001iaRJWAA2","Sic":null,"Industry":null,"AnnualRevenue":null,"NumberOfEmployees":null,"Ownership":null,"TickerSymbol":null,"Description":null,"Rating":null,"Site":null,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T06:31:19.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T06:31:37.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T06:31:37.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-03T06:31:37.000+0000","LastReferencedDate":"2023-08-03T06:31:37.000+0000","Jigsaw":null,"JigsawCompanyId":null,"CleanStatus":"Pending","AccountSource":null,"DunsNumber":null,"Tradestyle":null,"NaicsCode":null,"NaicsDesc":null,"YearStarted":null,"SicDesc":null,"DandbCompanyId":null,"OperatingHoursId":null,"CustomerPriority__c":null,"SLA__c":null,"Active__c":null,"NumberofLocations__c":null,"UpsellOpportunity__c":null,"SLASerialNumber__c":null,"SLAExpirationDate__c":null,"SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__DefaultOpportunity__c":null,"SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__PriceHoldEnd__c":null,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","SBQQ__CoTerminationEvent__c":null,"Stripe_ID__c":"cus_ONgRawK9MZNDXo","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ONgRawK9MZNDXo"}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/001DE000036VQjvYAG"},"Id":"001DE000036VQjvYAG","IsDeleted":false,"MasterRecordId":null,"Name":"REST + Account 2023-08-29 00:00:00 UTC","Type":null,"ParentId":null,"BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Phone":null,"Fax":null,"AccountNumber":null,"Website":null,"PhotoUrl":"/services/images/photo/001DE000036VQjvYAG","Sic":null,"Industry":null,"AnnualRevenue":null,"NumberOfEmployees":null,"Ownership":null,"TickerSymbol":null,"Description":null,"Rating":null,"Site":null,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:36:18.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:36:28.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:36:28.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-29T18:36:28.000+0000","LastReferencedDate":"2023-08-29T18:36:28.000+0000","Jigsaw":null,"JigsawCompanyId":null,"CleanStatus":"Pending","AccountSource":null,"DunsNumber":null,"Tradestyle":null,"NaicsCode":null,"NaicsDesc":null,"YearStarted":null,"SicDesc":null,"DandbCompanyId":null,"OperatingHoursId":null,"CustomerPriority__c":null,"SLA__c":null,"Active__c":null,"NumberofLocations__c":null,"UpsellOpportunity__c":null,"SLASerialNumber__c":null,"SLAExpirationDate__c":null,"SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__DefaultOpportunity__c":null,"SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__PriceHoldEnd__c":null,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","SBQQ__CoTerminationEvent__c":null,"Stripe_ID__c":"cus_OXc0ajKKb0ff11","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OXc0ajKKb0ff11"}' + recorded_at: Tue, 29 Aug 2023 18:37:00 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONgRawK9MZNDXo + uri: https://api.stripe.com/v1/customers/cus_OXc0ajKKb0ff11 body: encoding: US-ASCII string: '' @@ -9186,13 +9150,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_WYO69FphUcSdcU","request_duration_ms":172}}' + - '{"last_request_metrics":{"request_id":"req_NxF0Fsf29Jxgzm","request_duration_ms":221}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9207,11 +9171,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:30 GMT + - Tue, 29 Aug 2023 18:37:00 GMT Content-Type: - application/json Content-Length: - - '878' + - '879' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -9227,13 +9191,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_1ZREZRPQh6u3Ua + - req_vJpMQVDfl6jH0q Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '1.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9242,11 +9204,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONgRawK9MZNDXo", + "id": "cus_OXc0ajKKb0ff11", "object": "customer", "address": null, "balance": 0, - "created": 1691036770, + "created": 1693334187, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -9254,7 +9216,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "95A6DA24", + "invoice_prefix": "21213D18", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -9263,21 +9225,21 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaRJWAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaRJWAA2" + "salesforce_account_id": "001DE000036VQjvYAG", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjvYAG" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", + "name": "REST Account 2023-08-29 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], "shipping": null, "tax_exempt": "none", - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3" + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:00 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -9289,13 +9251,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_1ZREZRPQh6u3Ua","request_duration_ms":186}}' + - '{"last_request_metrics":{"request_id":"req_vJpMQVDfl6jH0q","request_duration_ms":206}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9310,7 +9272,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:30 GMT + - Tue, 29 Aug 2023 18:37:00 GMT Content-Type: - application/json Content-Length: @@ -9329,14 +9291,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_6se8Ds03utboBY + - req_MP2SCRHQP9vtPv Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9345,22 +9315,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691036770, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693334187, "livemode": false, "name": null, "status": "ready" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:00 GMT - request: method: post - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3/advance + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO/advance body: encoding: UTF-8 - string: frozen_time=1694131200 + string: frozen_time=1696377600 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -9369,15 +9339,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_6se8Ds03utboBY","request_duration_ms":170}}' + - '{"last_request_metrics":{"request_id":"req_MP2SCRHQP9vtPv","request_duration_ms":194}}' Idempotency-Key: - - f6bd5626-b90f-4ee5-a60c-a619455f21e8 + - b7cba70b-7d58-4f5c-aaae-6418fa5ad62c Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9392,7 +9362,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:31 GMT + - Tue, 29 Aug 2023 18:37:01 GMT Content-Type: - application/json Content-Length: @@ -9411,20 +9381,28 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock%2Fadvance;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' Idempotency-Key: - - f6bd5626-b90f-4ee5-a60c-a619455f21e8 + - b7cba70b-7d58-4f5c-aaae-6418fa5ad62c Original-Request: - - req_y0jJi2XcruIeKf + - req_gYLQ6ZpcMy4LBA + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_y0jJi2XcruIeKf + - req_gYLQ6ZpcMy4LBA Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '62.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9433,19 +9411,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691036770, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693334187, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:01 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -9457,13 +9435,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_y0jJi2XcruIeKf","request_duration_ms":277}}' + - '{"last_request_metrics":{"request_id":"req_gYLQ6ZpcMy4LBA","request_duration_ms":591}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9478,7 +9456,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:31 GMT + - Tue, 29 Aug 2023 18:37:01 GMT Content-Type: - application/json Content-Length: @@ -9497,14 +9475,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_DoblKU8gnGTKpK + - req_g7aOe2qGtI3oSP Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9513,19 +9499,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691036770, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693334187, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:01 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -9537,13 +9523,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_DoblKU8gnGTKpK","request_duration_ms":163}}' + - '{"last_request_metrics":{"request_id":"req_g7aOe2qGtI3oSP","request_duration_ms":201}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9558,7 +9544,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:32 GMT + - Tue, 29 Aug 2023 18:37:02 GMT Content-Type: - application/json Content-Length: @@ -9577,14 +9563,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_THFwb0gmyCQKDE + - req_5XQkuHkfEHXdIi Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9593,19 +9587,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693334187, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:02 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -9617,13 +9611,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_THFwb0gmyCQKDE","request_duration_ms":165}}' + - '{"last_request_metrics":{"request_id":"req_5XQkuHkfEHXdIi","request_duration_ms":200}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9638,7 +9632,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:33 GMT + - Tue, 29 Aug 2023 18:37:03 GMT Content-Type: - application/json Content-Length: @@ -9657,14 +9651,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_8HR065upSq6HTE + - req_SKYCttHDM5nb07 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9673,19 +9675,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:03 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -9697,13 +9699,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_8HR065upSq6HTE","request_duration_ms":160}}' + - '{"last_request_metrics":{"request_id":"req_SKYCttHDM5nb07","request_duration_ms":200}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9718,7 +9720,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:34 GMT + - Tue, 29 Aug 2023 18:37:05 GMT Content-Type: - application/json Content-Length: @@ -9737,14 +9739,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_taBJEEQXT0nU6U + - req_YRpXkewEh8DWfT Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9753,19 +9763,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:04 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -9777,13 +9787,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_taBJEEQXT0nU6U","request_duration_ms":170}}' + - '{"last_request_metrics":{"request_id":"req_YRpXkewEh8DWfT","request_duration_ms":199}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9798,7 +9808,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:36 GMT + - Tue, 29 Aug 2023 18:37:06 GMT Content-Type: - application/json Content-Length: @@ -9817,14 +9827,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_H94VY6TzRbcTq8 + - req_P7obyftq7JqPgt Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9833,19 +9851,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:06 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -9857,13 +9875,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_H94VY6TzRbcTq8","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_P7obyftq7JqPgt","request_duration_ms":265}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9878,7 +9896,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:37 GMT + - Tue, 29 Aug 2023 18:37:07 GMT Content-Type: - application/json Content-Length: @@ -9897,14 +9915,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_2rJFsjAJ50vKOi + - req_xXqCLr4xqFw2M7 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9913,19 +9939,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:07 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -9937,13 +9963,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_2rJFsjAJ50vKOi","request_duration_ms":167}}' + - '{"last_request_metrics":{"request_id":"req_xXqCLr4xqFw2M7","request_duration_ms":202}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9958,7 +9984,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:38 GMT + - Tue, 29 Aug 2023 18:37:08 GMT Content-Type: - application/json Content-Length: @@ -9977,14 +10003,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_RMmLDlG5vkbjVb + - req_JWKoSoIaQ1bAHw Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9993,19 +10027,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:08 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10017,13 +10051,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_RMmLDlG5vkbjVb","request_duration_ms":176}}' + - '{"last_request_metrics":{"request_id":"req_JWKoSoIaQ1bAHw","request_duration_ms":192}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10038,7 +10072,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:39 GMT + - Tue, 29 Aug 2023 18:37:09 GMT Content-Type: - application/json Content-Length: @@ -10057,14 +10091,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_l7Q4t9Ybb2AwyF + - req_XzHvvGxMXJeQI0 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10073,19 +10115,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:09 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10097,13 +10139,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_l7Q4t9Ybb2AwyF","request_duration_ms":160}}' + - '{"last_request_metrics":{"request_id":"req_XzHvvGxMXJeQI0","request_duration_ms":200}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10118,7 +10160,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:40 GMT + - Tue, 29 Aug 2023 18:37:11 GMT Content-Type: - application/json Content-Length: @@ -10137,14 +10179,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_Qi8DBLDcAPxH0F + - req_0kGmgCe49S6y0C Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10153,19 +10203,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:11 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10177,13 +10227,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Qi8DBLDcAPxH0F","request_duration_ms":165}}' + - '{"last_request_metrics":{"request_id":"req_0kGmgCe49S6y0C","request_duration_ms":197}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10198,7 +10248,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:41 GMT + - Tue, 29 Aug 2023 18:37:13 GMT Content-Type: - application/json Content-Length: @@ -10217,14 +10267,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_1LRbVJ6sivBmgP + - req_rT4zq2ysee8r3S Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10233,19 +10291,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:13 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10257,13 +10315,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_1LRbVJ6sivBmgP","request_duration_ms":173}}' + - '{"last_request_metrics":{"request_id":"req_rT4zq2ysee8r3S","request_duration_ms":1192}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10278,7 +10336,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:43 GMT + - Tue, 29 Aug 2023 18:37:14 GMT Content-Type: - application/json Content-Length: @@ -10297,14 +10355,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_KcvkcO4f4JN1ke + - req_aVzUM6BO97PdNG Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10313,19 +10379,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691040370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:14 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10337,13 +10403,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_KcvkcO4f4JN1ke","request_duration_ms":177}}' + - '{"last_request_metrics":{"request_id":"req_aVzUM6BO97PdNG","request_duration_ms":195}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10358,7 +10424,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:44 GMT + - Tue, 29 Aug 2023 18:37:15 GMT Content-Type: - application/json Content-Length: @@ -10377,14 +10443,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_s0RMaJisFywjmy + - req_dKlUCw6Ev3cbgk Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10393,19 +10467,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691299570, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693337787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:15 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10417,13 +10491,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_s0RMaJisFywjmy","request_duration_ms":169}}' + - '{"last_request_metrics":{"request_id":"req_dKlUCw6Ev3cbgk","request_duration_ms":180}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10438,7 +10512,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:45 GMT + - Tue, 29 Aug 2023 18:37:16 GMT Content-Type: - application/json Content-Length: @@ -10457,14 +10531,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_fICGwC3aggiUHF + - req_fXCbJ1sEXVQRCr Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10473,19 +10555,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691299570, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693596987, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:16 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10497,13 +10579,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fICGwC3aggiUHF","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_fXCbJ1sEXVQRCr","request_duration_ms":197}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10518,7 +10600,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:46 GMT + - Tue, 29 Aug 2023 18:37:18 GMT Content-Type: - application/json Content-Length: @@ -10537,14 +10619,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_bE9MqCNI0Q7jxJ + - req_cVuHME9llBSb5w Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10553,19 +10643,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691299570, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693596987, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:18 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10577,13 +10667,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_bE9MqCNI0Q7jxJ","request_duration_ms":194}}' + - '{"last_request_metrics":{"request_id":"req_cVuHME9llBSb5w","request_duration_ms":200}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10598,7 +10688,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:47 GMT + - Tue, 29 Aug 2023 18:37:19 GMT Content-Type: - application/json Content-Length: @@ -10617,14 +10707,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_F4Fhowy5gFEwQ0 + - req_qZYw0OjqTOcYeG Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10633,19 +10731,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691299570, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693596987, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:19 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10657,13 +10755,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_F4Fhowy5gFEwQ0","request_duration_ms":168}}' + - '{"last_request_metrics":{"request_id":"req_qZYw0OjqTOcYeG","request_duration_ms":207}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10678,7 +10776,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:48 GMT + - Tue, 29 Aug 2023 18:37:20 GMT Content-Type: - application/json Content-Length: @@ -10697,14 +10795,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_pwypvCtG0zA0W1 + - req_TwvpllVaAtTtrS Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10713,19 +10819,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691731570, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693596987, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:20 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10737,13 +10843,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_pwypvCtG0zA0W1","request_duration_ms":177}}' + - '{"last_request_metrics":{"request_id":"req_TwvpllVaAtTtrS","request_duration_ms":245}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10758,7 +10864,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:50 GMT + - Tue, 29 Aug 2023 18:37:21 GMT Content-Type: - application/json Content-Length: @@ -10777,14 +10883,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_HbgK4fVjNah0px + - req_c7ephHN1AGFbO9 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10793,19 +10907,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691731570, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1693596987, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:21 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10817,13 +10931,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_HbgK4fVjNah0px","request_duration_ms":174}}' + - '{"last_request_metrics":{"request_id":"req_c7ephHN1AGFbO9","request_duration_ms":189}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10838,7 +10952,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:51 GMT + - Tue, 29 Aug 2023 18:37:22 GMT Content-Type: - application/json Content-Length: @@ -10857,14 +10971,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_tksuHJofscByFI + - req_25S6ilxlKMHTrs Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10873,19 +10995,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691731570, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694028987, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:22 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10897,13 +11019,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_tksuHJofscByFI","request_duration_ms":162}}' + - '{"last_request_metrics":{"request_id":"req_25S6ilxlKMHTrs","request_duration_ms":202}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10918,7 +11040,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:52 GMT + - Tue, 29 Aug 2023 18:37:24 GMT Content-Type: - application/json Content-Length: @@ -10937,14 +11059,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_sk5czwulH8mHbh + - req_wYi2iKeN3PMRlA Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10953,19 +11083,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1691731570, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694028987, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:24 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -10977,13 +11107,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_sk5czwulH8mHbh","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_wYi2iKeN3PMRlA","request_duration_ms":195}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10998,7 +11128,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:53 GMT + - Tue, 29 Aug 2023 18:37:25 GMT Content-Type: - application/json Content-Length: @@ -11017,14 +11147,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_lM5qmEYIWAQo9d + - req_tl7juZOLrGCQh8 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11033,19 +11171,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1692336370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694028987, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:25 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11057,13 +11195,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_lM5qmEYIWAQo9d","request_duration_ms":178}}' + - '{"last_request_metrics":{"request_id":"req_tl7juZOLrGCQh8","request_duration_ms":189}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11078,7 +11216,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:54 GMT + - Tue, 29 Aug 2023 18:37:26 GMT Content-Type: - application/json Content-Length: @@ -11097,14 +11235,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_h5CnnskDS62JhD + - req_JgbDRO788exMb8 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11113,19 +11259,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1692336370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694028987, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:26 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11137,13 +11283,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_h5CnnskDS62JhD","request_duration_ms":162}}' + - '{"last_request_metrics":{"request_id":"req_JgbDRO788exMb8","request_duration_ms":181}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11158,7 +11304,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:56 GMT + - Tue, 29 Aug 2023 18:37:27 GMT Content-Type: - application/json Content-Length: @@ -11177,14 +11323,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_Zvtzza4RFq2dmA + - req_OlPEfNcuw96hIr Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11193,19 +11347,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1692336370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694633787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:27 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11217,13 +11371,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Zvtzza4RFq2dmA","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_OlPEfNcuw96hIr","request_duration_ms":189}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11238,7 +11392,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:57 GMT + - Tue, 29 Aug 2023 18:37:28 GMT Content-Type: - application/json Content-Length: @@ -11257,14 +11411,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_32NIzADPkmnuMA + - req_rQEdC9Ad6Vj67C Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '1.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11273,19 +11435,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1692336370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694633787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:28 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11297,13 +11459,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_32NIzADPkmnuMA","request_duration_ms":204}}' + - '{"last_request_metrics":{"request_id":"req_rQEdC9Ad6Vj67C","request_duration_ms":216}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11318,7 +11480,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:58 GMT + - Tue, 29 Aug 2023 18:37:30 GMT Content-Type: - application/json Content-Length: @@ -11337,14 +11499,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_GvGLuFFBetkkqV + - req_TxO54GjGHDiOxW Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11353,19 +11523,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1692336370, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694633787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:30 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11377,13 +11547,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_GvGLuFFBetkkqV","request_duration_ms":159}}' + - '{"last_request_metrics":{"request_id":"req_TxO54GjGHDiOxW","request_duration_ms":185}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11398,7 +11568,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:32:59 GMT + - Tue, 29 Aug 2023 18:37:31 GMT Content-Type: - application/json Content-Length: @@ -11417,14 +11587,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_xHjBJwSPbOE6YX + - req_7J7K8aZD5V8gVA Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11433,19 +11611,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1693958400, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694633787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:31 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11457,13 +11635,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_xHjBJwSPbOE6YX","request_duration_ms":212}}' + - '{"last_request_metrics":{"request_id":"req_7J7K8aZD5V8gVA","request_duration_ms":214}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11478,7 +11656,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:33:00 GMT + - Tue, 29 Aug 2023 18:37:32 GMT Content-Type: - application/json Content-Length: @@ -11497,14 +11675,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_HyER2Oa6e88pcw + - req_tgMraZMBbaKRPa Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11513,19 +11699,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1693958400, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694633787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:32 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11537,13 +11723,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_HyER2Oa6e88pcw","request_duration_ms":178}}' + - '{"last_request_metrics":{"request_id":"req_tgMraZMBbaKRPa","request_duration_ms":194}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11558,7 +11744,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:33:01 GMT + - Tue, 29 Aug 2023 18:37:33 GMT Content-Type: - application/json Content-Length: @@ -11577,14 +11763,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_pkKiQxPZ1QkMi4 + - req_HsqrZatcbI7t8I Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11593,19 +11787,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1693958400, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1694633787, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:33 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11617,13 +11811,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_pkKiQxPZ1QkMi4","request_duration_ms":170}}' + - '{"last_request_metrics":{"request_id":"req_HsqrZatcbI7t8I","request_duration_ms":290}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11638,7 +11832,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:33:03 GMT + - Tue, 29 Aug 2023 18:37:35 GMT Content-Type: - application/json Content-Length: @@ -11657,14 +11851,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_dYM10WCSGOUreS + - req_LxMZ3XrLmRCV2j Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11673,19 +11875,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1693958400, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1696204800, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:34 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11697,13 +11899,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dYM10WCSGOUreS","request_duration_ms":168}}' + - '{"last_request_metrics":{"request_id":"req_LxMZ3XrLmRCV2j","request_duration_ms":190}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11718,7 +11920,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:33:04 GMT + - Tue, 29 Aug 2023 18:37:36 GMT Content-Type: - application/json Content-Length: @@ -11737,14 +11939,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_WAHkkkJSY2UHxM + - req_zNzBgET3yGeX1K Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11753,19 +11963,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1693958400, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1696204800, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:36 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11777,13 +11987,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_WAHkkkJSY2UHxM","request_duration_ms":181}}' + - '{"last_request_metrics":{"request_id":"req_zNzBgET3yGeX1K","request_duration_ms":192}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11798,7 +12008,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:33:05 GMT + - Tue, 29 Aug 2023 18:37:37 GMT Content-Type: - application/json Content-Length: @@ -11817,14 +12027,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_miW2i7FnY9Sfnx + - req_ZDOb9CpIt3hyqi Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11833,19 +12051,107 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1693958400, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1696204800, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:37 GMT +- request: + method: get + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_ZDOb9CpIt3hyqi","request_duration_ms":209}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 29 Aug 2023 18:37:38 GMT + Content-Type: + - application/json + Content-Length: + - '230' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET, POST, HEAD, OPTIONS, DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_mSnlKZXaCqgNPE + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", + "object": "test_helpers.test_clock", + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1696204800, + "livemode": false, + "name": null, + "status": "advancing" + } + recorded_at: Tue, 29 Aug 2023 18:37:38 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nav4OIsgf92XbAOVZX4OoU3 + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO body: encoding: US-ASCII string: '' @@ -11857,13 +12163,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_miW2i7FnY9Sfnx","request_duration_ms":173}}' + - '{"last_request_metrics":{"request_id":"req_mSnlKZXaCqgNPE","request_duration_ms":204}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11878,7 +12184,271 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:33:06 GMT + - Tue, 29 Aug 2023 18:37:39 GMT + Content-Type: + - application/json + Content-Length: + - '230' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET, POST, HEAD, OPTIONS, DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_Cu7LuMY7NyW5ZI + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", + "object": "test_helpers.test_clock", + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1696204800, + "livemode": false, + "name": null, + "status": "advancing" + } + recorded_at: Tue, 29 Aug 2023 18:37:39 GMT +- request: + method: get + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_Cu7LuMY7NyW5ZI","request_duration_ms":195}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 29 Aug 2023 18:37:41 GMT + Content-Type: + - application/json + Content-Length: + - '230' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET, POST, HEAD, OPTIONS, DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_2RvoqucK6nK1BX + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", + "object": "test_helpers.test_clock", + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1696204800, + "livemode": false, + "name": null, + "status": "advancing" + } + recorded_at: Tue, 29 Aug 2023 18:37:40 GMT +- request: + method: get + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_2RvoqucK6nK1BX","request_duration_ms":198}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 29 Aug 2023 18:37:42 GMT + Content-Type: + - application/json + Content-Length: + - '230' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET, POST, HEAD, OPTIONS, DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_wEmt6wkCj61547 + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", + "object": "test_helpers.test_clock", + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1696204800, + "livemode": false, + "name": null, + "status": "advancing" + } + recorded_at: Tue, 29 Aug 2023 18:37:42 GMT +- request: + method: get + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWm8Isgf92XbAOLatXWVjO + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_wEmt6wkCj61547","request_duration_ms":188}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 29 Aug 2023 18:37:43 GMT Content-Type: - application/json Content-Length: @@ -11897,14 +12467,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_5wX4aLXCK4C2gL + - req_N7pxvAgv7Bw9Jx Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11913,16 +12491,16 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "id": "clock_1NkWm8Isgf92XbAOLatXWVjO", "object": "test_helpers.test_clock", - "created": 1691044296, - "deletes_after": 1693636296, - "frozen_time": 1694131200, + "created": 1693334188, + "deletes_after": 1695926188, + "frozen_time": 1696377600, "livemode": false, "name": null, "status": "ready" } - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + recorded_at: Tue, 29 Aug 2023 18:37:43 GMT - request: method: get uri: https://api.stripe.com/v1/events?type=invoiceitem.created @@ -11937,13 +12515,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_5wX4aLXCK4C2gL","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_N7pxvAgv7Bw9Jx","request_duration_ms":199}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11958,11 +12536,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 06:33:06 GMT + - Tue, 29 Aug 2023 18:37:43 GMT Content-Type: - application/json Content-Length: - - '32136' + - '32211' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -11978,13 +12556,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_mVxrr5KODitmIX + - req_Btcp4cihGeHmvd Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '47.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11996,40 +12572,40 @@ http_interactions: "object": "list", "data": [ { - "id": "evt_1Nav5kIsgf92XbAOLSm6Yx9A", + "id": "evt_1NkWnDIsgf92XbAOqUoNFS7t", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691044380, + "created": 1693334255, "data": { "object": { - "id": "ii_1Nav5kIsgf92XbAOhrBDURap", + "id": "ii_1NkWnDIsgf92XbAO1VfyPz5t", "object": "invoiceitem", - "amount": 1921, + "amount": 1888, "currency": "usd", - "customer": "cus_ONgRawK9MZNDXo", - "date": 1693958400, - "description": "REST Product2 2023-08-03 00:00:00 UTC", + "customer": "cus_OXc0ajKKb0ff11", + "date": 1696204800, + "description": "REST Product2 2023-08-29 00:00:00 UTC", "discountable": true, "discounts": [], "invoice": null, "livemode": false, "metadata": { - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE", + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB", "salesforce_proration": "true" }, "period": { - "end": 1698969600, - "start": 1693958400 + "end": 1701216000, + "start": 1696204800 }, "plan": null, "price": { - "id": "price_1Nav5CIsgf92XbAOSugHdR5q", + "id": "price_1NkWmaIsgf92XbAOdkxYdcgr", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044346, + "created": 1693334216, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -12037,28 +12613,28 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQy2AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQy2AAE", - "salesforce_original_stripe_price_id": "price_1Nav59Isgf92XbAOs2qCNmh8", + "salesforce_order_item_id": "802DE00000Ay2boYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2boYAB", + "salesforce_original_stripe_price_id": "price_1NkWmZIsgf92XbAORUxmcYHR", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, "transform_quantity": null, "type": "one_time", "unit_amount": null, - "unit_amount_decimal": "1920.585823571599" + "unit_amount_decimal": "1887.69834809672" }, "proration": false, "quantity": 1, - "subscription": "sub_1Nav4WIsgf92XbAOhIsiNUaV", + "subscription": "sub_1NkWmDIsgf92XbAOe8foJ5RW", "tax_rates": [], - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3", + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO", "unit_amount": null, - "unit_amount_decimal": "1920.585823571599" + "unit_amount_decimal": "1887.69834809672" } }, "livemode": false, @@ -12070,71 +12646,71 @@ http_interactions: "type": "invoiceitem.created" }, { - "id": "evt_1Nav4XIsgf92XbAOQ5dXt1gJ", + "id": "evt_1NkWmEIsgf92XbAOvZr4l0ah", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691044305, + "created": 1693334193, "data": { "object": { - "id": "ii_1Nav4XIsgf92XbAON3z98lRW", + "id": "ii_1NkWmDIsgf92XbAO7WMuhNZ6", "object": "invoiceitem", - "amount": 3000, + "amount": 6000, "currency": "usd", - "customer": "cus_ONgRawK9MZNDXo", - "date": 1691036770, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Nov 2023", + "customer": "cus_OXc0ajKKb0ff11", + "date": 1693334187, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Nov 2023", "discountable": false, "discounts": [], - "invoice": "in_1Nav4XIsgf92XbAOiZkJD1Az", + "invoice": "in_1NkWmDIsgf92XbAOPXMJf6mM", "livemode": false, "metadata": {}, "period": { - "end": 1698969600, - "start": 1691020800 + "end": 1701216000, + "start": 1693267200 }, "plan": { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 3000, - "amount_decimal": "3000", + "amount": 6000, + "amount_decimal": "6000", "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "interval": "month", "interval_count": 3, "livemode": false, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1Nav4TIsgf92XbAOY99CE7pt", + "id": "price_1NkWmCIsgf92XbAOGw5g1sQq", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044301, + "created": 1693334192, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQxxAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxxAAE" + "salesforce_order_item_id": "802DE00000Ay2bjYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bjYAB" }, "nickname": null, - "product": "prod_ONgR4MmTQrmCza", + "product": "prod_OXc05Om0XrosxT", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12146,62 +12722,62 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "unit_amount": 6000, + "unit_amount_decimal": "6000" }, "proration": true, "quantity": 1, - "subscription": "sub_1Nav4WIsgf92XbAOhIsiNUaV", - "subscription_item": "si_ONgRSHuYICVmmQ", + "subscription": "sub_1NkWmDIsgf92XbAOe8foJ5RW", + "subscription_item": "si_OXc0J4iy740LTv", "tax_rates": [], - "test_clock": "clock_1Nav4OIsgf92XbAOVZX4OoU3", - "unit_amount": 3000, - "unit_amount_decimal": "3000" + "test_clock": "clock_1NkWm8Isgf92XbAOLatXWVjO", + "unit_amount": 6000, + "unit_amount_decimal": "6000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_h2yQCf59WOfZVq", - "idempotency_key": "5ffb0b52-f677-471c-91d7-53bd75b25793" + "id": "req_mQf7G5g1Q79rv5", + "idempotency_key": "65c557ab-e3fd-4e05-b2b2-a0b45f6a4ce0" }, "type": "invoiceitem.created" }, { - "id": "evt_1Nav41Isgf92XbAO52ZmiDcc", + "id": "evt_1NkWlTIsgf92XbAO49Cpqyjr", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691044273, + "created": 1693334147, "data": { "object": { - "id": "ii_1Nav40Isgf92XbAO4BekkjEz", + "id": "ii_1NkWlSIsgf92XbAObzAblcbE", "object": "invoiceitem", - "amount": 3551, + "amount": 4468, "currency": "usd", - "customer": "cus_ONgPUi86nebzPl", - "date": 1695600000, - "description": "REST Product2 2023-08-03 00:00:00 UTC", + "customer": "cus_OXbxbwOxZGraDf", + "date": 1694995200, + "description": "REST Product2 2023-08-29 00:00:00 UTC", "discountable": true, "discounts": [], "invoice": null, "livemode": false, "metadata": { - "salesforce_order_item_id": "8027e000001bQxsAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxsAAE", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", "salesforce_proration": "true" }, "period": { - "end": 1696291200, - "start": 1695600000 + "end": 1709164800, + "start": 1694995200 }, "plan": null, "price": { - "id": "price_1Nav3IIsgf92XbAOtAgoQnkx", + "id": "price_1NkWknIsgf92XbAOrFWRqNFE", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691044228, + "created": 1693334105, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -12209,28 +12785,28 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQxsAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQxsAAE", - "salesforce_original_stripe_price_id": "price_1Nav3FIsgf92XbAOTE8EQVe0", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", + "salesforce_original_stripe_price_id": "price_1NkWklIsgf92XbAOaRcorpUF", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONgP3AUUiGZpDn", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, "transform_quantity": null, "type": "one_time", "unit_amount": null, - "unit_amount_decimal": "3550.693986162853" + "unit_amount_decimal": "4468.028145889527" }, "proration": false, "quantity": 1, - "subscription": "sub_1Nav2ZIsgf92XbAOqAtuPtTy", + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", "tax_rates": [], - "test_clock": "clock_1Nav2SIsgf92XbAOkT6Zx4po", + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe", "unit_amount": null, - "unit_amount_decimal": "3550.693986162853" + "unit_amount_decimal": "4468.028145889527" } }, "livemode": false, @@ -12242,73 +12818,73 @@ http_interactions: "type": "invoiceitem.created" }, { - "id": "evt_1Nav2ZIsgf92XbAOJqzjQdyy", + "id": "evt_1NkWkGIsgf92XbAOINT5nu1L", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691044183, + "created": 1693334072, "data": { "object": { - "id": "ii_1Nav2ZIsgf92XbAOltfpHPET", + "id": "ii_1NkWkFIsgf92XbAOdWA53l8G", "object": "invoiceitem", - "amount": 12000, + "amount": 10000, "currency": "usd", - "customer": "cus_ONgPUi86nebzPl", - "date": 1691036770, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Sep 2023", + "customer": "cus_OXbxbwOxZGraDf", + "date": 1693334025, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Feb 2024", "discountable": false, "discounts": [], - "invoice": "in_1Nav2ZIsgf92XbAOCQZoWA1L", + "invoice": "in_1NkWkFIsgf92XbAOhx4eedV8", "livemode": false, "metadata": {}, "period": { - "end": 1693699200, - "start": 1691020800 + "end": 1709164800, + "start": 1693267200 }, "plan": { - "id": "price_1Nav2XIsgf92XbAOO2sc3NZV", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 12000, - "amount_decimal": "12000", + "amount": 10000, + "amount_decimal": "10000", "billing_scheme": "per_unit", - "created": 1691044181, + "created": 1693334070, "currency": "usd", "interval": "month", - "interval_count": 1, + "interval_count": 6, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IskD6AAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskD6AAJ" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONgP3AUUiGZpDn", + "product": "prod_OXbxSDZ1lrlTIx", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1Nav2XIsgf92XbAOO2sc3NZV", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044181, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IskD6AAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskD6AAJ" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONgP3AUUiGZpDn", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 1, + "interval_count": 6, "trial_period_days": null, "usage_type": "licensed" }, @@ -12316,95 +12892,97 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 12000, - "unit_amount_decimal": "12000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" }, "proration": true, "quantity": 1, - "subscription": "sub_1Nav2ZIsgf92XbAOqAtuPtTy", - "subscription_item": "si_ONgP7aptFn4Ic4", + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", + "subscription_item": "si_OXbyV4NToLkqCk", "tax_rates": [], - "test_clock": "clock_1Nav2SIsgf92XbAOkT6Zx4po", - "unit_amount": 12000, - "unit_amount_decimal": "12000" + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe", + "unit_amount": 10000, + "unit_amount_decimal": "10000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_t8T5BXxtneXgNZ", - "idempotency_key": "0d463d70-147e-4210-9526-c70ade1d6745" + "id": "req_FIakSozkRVcBbk", + "idempotency_key": "83613824-d153-4604-87f4-3dc104958c89" }, "type": "invoiceitem.created" }, { - "id": "evt_1Nav0CIsgf92XbAOT8SqBfmT", + "id": "evt_1NkWduIsgf92XbAOMkZF2GJY", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691044036, + "created": 1693333676, "data": { "object": { - "id": "ii_1Nav0CIsgf92XbAOz9arAOwn", + "id": "ii_1NkWdsIsgf92XbAOEKqcTpFZ", "object": "invoiceitem", - "amount": 120000, + "amount": 107000, "currency": "usd", - "customer": "cus_ONgMIx2qhMgIlt", - "date": 1691044079, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Aug 2024", + "customer": "cus_OXbr4U9Qsq9wVs", + "date": 1693333676, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC (with discounts) from 29 Aug 2023 until 29 Sep 2023", "discountable": false, "discounts": [], - "invoice": "in_1Nav0CIsgf92XbAOHcilY0oO", + "invoice": "in_1NkWdsIsgf92XbAOirMHlEZc", "livemode": false, "metadata": {}, "period": { - "end": 1722643200, - "start": 1691020800 + "end": 1695945600, + "start": 1693267200 }, "plan": { - "id": "price_1Nav0AIsgf92XbAO6vYb8GL8", + "id": "price_1NkWdnIsgf92XbAOa0jH3dcD", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 120000, - "amount_decimal": "120000", + "amount": 144000, + "amount_decimal": "144000", "billing_scheme": "per_unit", - "created": 1691044034, + "created": 1693333671, "currency": "usd", "interval": "month", - "interval_count": 12, + "interval_count": 1, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IskCwAAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCwAAJ" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bQYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bQYAR" }, "nickname": null, - "product": "prod_ONgM036iAWw7A6", + "product": "prod_OXbrDTtzZz0PkG", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1Nav0AIsgf92XbAO6vYb8GL8", + "id": "price_1NkWdnIsgf92XbAOa0jH3dcD", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691044034, + "created": 1693333671, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IskCwAAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCwAAJ" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bQYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bQYAR" }, "nickname": null, - "product": "prod_ONgM036iAWw7A6", + "product": "prod_OXbrDTtzZz0PkG", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 12, + "interval_count": 1, "trial_period_days": null, "usage_type": "licensed" }, @@ -12412,95 +12990,97 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 120000, - "unit_amount_decimal": "120000" + "unit_amount": 144000, + "unit_amount_decimal": "144000" }, "proration": true, "quantity": 1, - "subscription": "sub_1Nav0CIsgf92XbAOtY8rXLVt", - "subscription_item": "si_ONgM0OhiTiSgQj", + "subscription": "sub_1NkWdsIsgf92XbAO7SrGW4lQ", + "subscription_item": "si_OXbrS7yhDvoJPr", "tax_rates": [], - "test_clock": "clock_1Nav03Isgf92XbAOguB0bjYZ", - "unit_amount": 120000, - "unit_amount_decimal": "120000" + "test_clock": null, + "unit_amount": 107000, + "unit_amount_decimal": "107000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_xPwrKiDXJT86FV", - "idempotency_key": "556f7dfc-4c69-42ba-899b-68bfa7f2da39" + "id": "req_lPiZvFhl3N5JNs", + "idempotency_key": "3ee96189-4c46-4663-8733-955dcda2607c" }, "type": "invoiceitem.created" }, { - "id": "evt_1NauxYIsgf92XbAOyU07270o", + "id": "evt_1NkWd4Isgf92XbAOFBHnK3Qx", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691043872, + "created": 1693333625, "data": { "object": { - "id": "ii_1NauxXIsgf92XbAOgiq6T5ln", + "id": "ii_1NkWd3Isgf92XbAOFyVItWGd", "object": "invoiceitem", - "amount": 120000, + "amount": 144000, "currency": "usd", - "customer": "cus_ONgKw7oz6WD2nT", - "date": 1691042910, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Aug 2024", + "customer": "cus_OXbqmhIkfU9CKw", + "date": 1693333625, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Sep 2023", "discountable": false, "discounts": [], - "invoice": "in_1NauxYIsgf92XbAOKPAkov13", + "invoice": "in_1NkWd3Isgf92XbAOUwAS35RD", "livemode": false, "metadata": {}, "period": { - "end": 1722643200, - "start": 1691020800 + "end": 1695945600, + "start": 1693267200 }, "plan": { - "id": "price_1NauxWIsgf92XbAO0UDfDWAI", + "id": "price_1NkWcyIsgf92XbAO3cBXtnWi", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 120000, - "amount_decimal": "120000", + "amount": 144000, + "amount_decimal": "144000", "billing_scheme": "per_unit", - "created": 1691043870, + "created": 1693333620, "currency": "usd", "interval": "month", - "interval_count": 12, + "interval_count": 1, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IskCmAAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCmAAJ" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bKYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bKYAR" }, "nickname": null, - "product": "prod_ONgKFM86PHlDnk", + "product": "prod_OXbqepaPHogYmb", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NauxWIsgf92XbAO0UDfDWAI", + "id": "price_1NkWcyIsgf92XbAO3cBXtnWi", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691043870, + "created": 1693333620, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IskCmAAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCmAAJ" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bKYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bKYAR" }, "nickname": null, - "product": "prod_ONgKFM86PHlDnk", + "product": "prod_OXbqepaPHogYmb", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 12, + "interval_count": 1, "trial_period_days": null, "usage_type": "licensed" }, @@ -12508,95 +13088,97 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 120000, - "unit_amount_decimal": "120000" + "unit_amount": 144000, + "unit_amount_decimal": "144000" }, "proration": true, "quantity": 1, - "subscription": "sub_1NauxXIsgf92XbAOB8dYoJhJ", - "subscription_item": "si_ONgKTdbrHn1JmF", + "subscription": "sub_1NkWd3Isgf92XbAOLGCH4TUy", + "subscription_item": "si_OXbqlmBzqHxWko", "tax_rates": [], - "test_clock": "clock_1NauxQIsgf92XbAOReSor5Nc", - "unit_amount": 120000, - "unit_amount_decimal": "120000" + "test_clock": null, + "unit_amount": 144000, + "unit_amount_decimal": "144000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_fH9DqaQfY4LYxo", - "idempotency_key": "f75cffe8-3d04-4564-8382-8b7d23dc2e87" + "id": "req_nQGwTMAkL01pMz", + "idempotency_key": "042349da-5545-41af-9971-d527773d128b" }, "type": "invoiceitem.created" }, { - "id": "evt_1NauxXIsgf92XbAOitfmk705", + "id": "evt_1NkWcfIsgf92XbAOd44rZFtK", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691043871, + "created": 1693333600, "data": { "object": { - "id": "ii_1NauxWIsgf92XbAOjpg6HBtw", + "id": "ii_1NkWceIsgf92XbAOmu2eafz3", "object": "invoiceitem", - "amount": 120000, + "amount": 144000, "currency": "usd", - "customer": "cus_ONgKw7oz6WD2nT", - "date": 1691042910, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Aug 2024", + "customer": "cus_OXbqdCp2D3g9VQ", + "date": 1693333600, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Sep 2023", "discountable": false, "discounts": [], - "invoice": "in_1NauxWIsgf92XbAOLqioHdrV", + "invoice": "in_1NkWceIsgf92XbAOofELXOqn", "livemode": false, "metadata": {}, "period": { - "end": 1722643200, - "start": 1691020800 + "end": 1695945600, + "start": 1693267200 }, "plan": { - "id": "price_1NauxVIsgf92XbAOs2NrxmKy", + "id": "price_1NkWcVIsgf92XbAO8Lx1HmiZ", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 120000, - "amount_decimal": "120000", + "amount": 144000, + "amount_decimal": "144000", "billing_scheme": "per_unit", - "created": 1691043869, + "created": 1693333591, "currency": "usd", "interval": "month", - "interval_count": 12, + "interval_count": 1, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IskCmAAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCmAAJ" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bFYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bFYAR" }, "nickname": null, - "product": "prod_ONgKcn2hwGH1e7", + "product": "prod_OXbqVl4u7lzaVp", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NauxVIsgf92XbAOs2NrxmKy", + "id": "price_1NkWcVIsgf92XbAO8Lx1HmiZ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691043869, + "created": 1693333591, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IskCmAAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCmAAJ" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bFYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bFYAR" }, "nickname": null, - "product": "prod_ONgKcn2hwGH1e7", + "product": "prod_OXbqVl4u7lzaVp", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 12, + "interval_count": 1, "trial_period_days": null, "usage_type": "licensed" }, @@ -12604,169 +13186,169 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 120000, - "unit_amount_decimal": "120000" + "unit_amount": 144000, + "unit_amount_decimal": "144000" }, "proration": true, "quantity": 1, - "subscription": "sub_1NauxWIsgf92XbAOb6YczzYz", - "subscription_item": "si_ONgK7Z4a7l84dR", + "subscription": "sub_1NkWceIsgf92XbAOH3geTAA7", + "subscription_item": "si_OXbqnZYVuwQJNo", "tax_rates": [], - "test_clock": "clock_1NauxQIsgf92XbAOReSor5Nc", - "unit_amount": 120000, - "unit_amount_decimal": "120000" + "test_clock": null, + "unit_amount": 144000, + "unit_amount_decimal": "144000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_PCwyF0MmMg5f04", - "idempotency_key": "2a814492-ceaf-4376-93f2-d8120a52a5de" + "id": "req_eU9znZVB6VRWDD", + "idempotency_key": "57accbcf-7216-4277-b582-d54457cd211f" }, "type": "invoiceitem.created" }, { - "id": "evt_1NauwaIsgf92XbAOV1EWOVjv", + "id": "evt_1NkUSsIsgf92XbAOy5PUh83i", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691043812, + "created": 1693325305, "data": { "object": { - "id": "ii_1NauwaIsgf92XbAOBPMxCdIT", + "id": "ii_1NkUSrIsgf92XbAOXUc09gmu", "object": "invoiceitem", - "amount": -100000, + "amount": 72000, "currency": "usd", - "customer": "cus_ONgIkuEldbLQ3v", - "date": 1696291200, - "description": "REST Product2 2023-08-03 00:00:00 UTC", + "customer": "cus_OXZbWSuD9xMVaq", + "date": 1693325305, + "description": "REST Product2 2023-08-29 00:00:00 UTC", "discountable": true, "discounts": [], "invoice": null, "livemode": false, "metadata": { - "salesforce_credit": "true", - "salesforce_order_item_id": "8027e000001bQx9AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQx9AAE", + "salesforce_order_item_id": "802DE00000Ay2b0YAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2b0YAB", "salesforce_proration": "true" }, "period": { - "end": 1722643200, - "start": 1696291200 + "end": 1695686400, + "start": 1687737600 }, "plan": null, "price": { - "id": "price_1NauwQIsgf92XbAOvJO6uruB", + "id": "price_1NkUSqIsgf92XbAOHxEKzmbc", "object": "price", - "active": false, + "active": true, "billing_scheme": "per_unit", - "created": 1691043802, + "created": 1693325304, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "field_custom": "value_custom", - "salesforce_pricebook_entry_id": "01u7e00000IskCXAAZ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCXAAZ" + "salesforce_auto_archive": "true", + "salesforce_duplicate": "true", + "salesforce_original_stripe_price_id": "price_1NkUSnIsgf92XbAOWJvU56m3", + "salesforce_pricebook_entry_id": "01uDE00000KVlJpYAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJpYAL", + "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONgIW4LEBlyURQ", + "product": "prod_OXZbQxIUAALIc3", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, "transform_quantity": null, "type": "one_time", - "unit_amount": -100000, - "unit_amount_decimal": "-100000" + "unit_amount": 36000, + "unit_amount_decimal": "36000" }, "proration": false, - "quantity": 1, - "subscription": "sub_1NauwFIsgf92XbAOElzD9Ed4", + "quantity": 2, + "subscription": "sub_1NkUSbIsgf92XbAOJ17RDHzp", "tax_rates": [], - "test_clock": "clock_1NauvsIsgf92XbAOSkxg0OKf", - "unit_amount": -100000, - "unit_amount_decimal": "-100000" + "test_clock": null, + "unit_amount": 36000, + "unit_amount_decimal": "36000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": null, - "idempotency_key": null + "id": "req_1rfTotrKTJ4Mgk", + "idempotency_key": "22317871-20a6-469f-b641-eefcec5b5754" }, "type": "invoiceitem.created" }, { - "id": "evt_1NauwGIsgf92XbAOy33ZwzOb", + "id": "evt_1NkUScIsgf92XbAOTQp472jO", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691043791, + "created": 1693325289, "data": { "object": { - "id": "ii_1NauwFIsgf92XbAO7czyW4jg", + "id": "ii_1NkUSbIsgf92XbAOwYkVzwmW", "object": "invoiceitem", - "amount": 120000, + "amount": 48000, "currency": "usd", - "customer": "cus_ONgIkuEldbLQ3v", - "date": 1691042910, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Aug 2024", + "customer": "cus_OXZbWSuD9xMVaq", + "date": 1693325289, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 26 May 2023 until 26 Sep 2023", "discountable": false, "discounts": [], - "invoice": "in_1NauwFIsgf92XbAOyOTwGYZ7", + "invoice": "in_1NkUSbIsgf92XbAOchXxBynf", "livemode": false, "metadata": {}, "period": { - "end": 1722643200, - "start": 1691020800 + "end": 1695686400, + "start": 1685059200 }, "plan": { - "id": "price_1NauwBIsgf92XbAOUnhGIZIv", + "id": "price_1NkUSZIsgf92XbAO2EioOjIE", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 120000, - "amount_decimal": "120000", + "amount": 12000, + "amount_decimal": "12000", "billing_scheme": "per_unit", - "created": 1691043787, + "created": 1693325287, "currency": "usd", "interval": "month", - "interval_count": 12, + "interval_count": 1, "livemode": false, "metadata": { - "field_custom": "value_custom", - "salesforce_pricebook_entry_id": "01u7e00000IskCXAAZ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCXAAZ" + "salesforce_pricebook_entry_id": "01uDE00000KVlJpYAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJpYAL" }, "nickname": null, - "product": "prod_ONgIW4LEBlyURQ", + "product": "prod_OXZbQxIUAALIc3", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NauwBIsgf92XbAOUnhGIZIv", + "id": "price_1NkUSZIsgf92XbAO2EioOjIE", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691043787, + "created": 1693325287, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "field_custom": "value_custom", - "salesforce_pricebook_entry_id": "01u7e00000IskCXAAZ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCXAAZ" + "salesforce_pricebook_entry_id": "01uDE00000KVlJpYAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJpYAL" }, "nickname": null, - "product": "prod_ONgIW4LEBlyURQ", + "product": "prod_OXZbQxIUAALIc3", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 12, + "interval_count": 1, "trial_period_days": null, "usage_type": "licensed" }, @@ -12774,93 +13356,91 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 120000, - "unit_amount_decimal": "120000" + "unit_amount": 12000, + "unit_amount_decimal": "12000" }, "proration": true, "quantity": 1, - "subscription": "sub_1NauwFIsgf92XbAOElzD9Ed4", - "subscription_item": "si_ONgIdreIOHRrmV", + "subscription": "sub_1NkUSbIsgf92XbAOJ17RDHzp", + "subscription_item": "si_OXZbjvai0TJ4vX", "tax_rates": [], - "test_clock": "clock_1NauvsIsgf92XbAOSkxg0OKf", - "unit_amount": 120000, - "unit_amount_decimal": "120000" + "test_clock": null, + "unit_amount": 48000, + "unit_amount_decimal": "48000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_HJPdQ10kd2RVUP", - "idempotency_key": "bd242dd7-641b-4b28-9712-08441d9263b4" + "id": "req_CCeGFPHPi7n01W", + "idempotency_key": "4b2f1e79-2e9b-4d4d-92a2-b11f4e574385" }, "type": "invoiceitem.created" }, { - "id": "evt_1NauwGIsgf92XbAOpqTGM4yG", + "id": "evt_1NkU8mIsgf92XbAO27Kb6tuN", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691043791, + "created": 1693324059, "data": { "object": { - "id": "ii_1NauwFIsgf92XbAOsSpi4LRG", + "id": "ii_1NkU8lIsgf92XbAOpjtHLTbj", "object": "invoiceitem", - "amount": 240000, + "amount": 12000, "currency": "usd", - "customer": "cus_ONgIkuEldbLQ3v", - "date": 1691042910, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Aug 2024", + "customer": "cus_OXZHGomRkHYSjo", + "date": 1693324059, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Aug 2024", "discountable": false, "discounts": [], - "invoice": "in_1NauwFIsgf92XbAOyOTwGYZ7", + "invoice": "in_1NkU8lIsgf92XbAOSVFDGYyy", "livemode": false, "metadata": {}, "period": { - "end": 1722643200, - "start": 1691020800 + "end": 1724889600, + "start": 1693267200 }, "plan": { - "id": "price_1NauwEIsgf92XbAOu2skZZtG", + "id": "price_1NkU8jIsgf92XbAOh54rwIKn", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 240000, - "amount_decimal": "240000", + "amount": 12000, + "amount_decimal": "12000", "billing_scheme": "per_unit", - "created": 1691043790, + "created": 1693324057, "currency": "usd", "interval": "month", "interval_count": 12, "livemode": false, "metadata": { - "field_custom": "value_custom", - "salesforce_pricebook_entry_id": "01u7e00000IskCcAAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCcAAJ" + "salesforce_pricebook_entry_id": "01uDE00000KVlJVYA1", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJVYA1" }, "nickname": null, - "product": "prod_ONgIzUA2tQ21g6", + "product": "prod_OXZHyKJP3BQlOz", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NauwEIsgf92XbAOu2skZZtG", + "id": "price_1NkU8jIsgf92XbAOh54rwIKn", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691043790, + "created": 1693324057, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "field_custom": "value_custom", - "salesforce_pricebook_entry_id": "01u7e00000IskCcAAJ", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IskCcAAJ" + "salesforce_pricebook_entry_id": "01uDE00000KVlJVYA1", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJVYA1" }, "nickname": null, - "product": "prod_ONgIzUA2tQ21g6", + "product": "prod_OXZHyKJP3BQlOz", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12872,24 +13452,24 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 240000, - "unit_amount_decimal": "240000" + "unit_amount": 12000, + "unit_amount_decimal": "12000" }, "proration": true, "quantity": 1, - "subscription": "sub_1NauwFIsgf92XbAOElzD9Ed4", - "subscription_item": "si_ONgILcqj6cRYN7", + "subscription": "sub_1NkU8lIsgf92XbAOiQoTzW2o", + "subscription_item": "si_OXZHA4PfS4xNO5", "tax_rates": [], - "test_clock": "clock_1NauvsIsgf92XbAOSkxg0OKf", - "unit_amount": 240000, - "unit_amount_decimal": "240000" + "test_clock": null, + "unit_amount": 12000, + "unit_amount_decimal": "12000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_HJPdQ10kd2RVUP", - "idempotency_key": "bd242dd7-641b-4b28-9712-08441d9263b4" + "id": "req_hA9clJJPKgRgfk", + "idempotency_key": "c273a568-45f0-4d91-940a-2b747f9dfd69" }, "type": "invoiceitem.created" } diff --git a/test/vcr_cassettes/integration/amendments/test_proration_amendments/translates_non-anniversary_amendment_order_billed_semi-annually_with_day_prorations_enabled.yml b/test/vcr_cassettes/integration/amendments/test_proration_amendments/translates_non-anniversary_amendment_order_billed_semi-annually_with_day_prorations_enabled.yml index d72d28ab0b..0666580e94 100644 --- a/test/vcr_cassettes/integration/amendments/test_proration_amendments/translates_non-anniversary_amendment_order_billed_semi-annually_with_day_prorations_enabled.yml +++ b/test/vcr_cassettes/integration/amendments/test_proration_amendments/translates_non-anniversary_amendment_order_billed_semi-annually_with_day_prorations_enabled.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-03 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-08-29 00:00:00 UTC","IsActive":true,"Description":"A great description","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__SubscriptionPricing__c":"Fixed Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__SubscriptionTerm__c":null,"SBQQ__BillingFrequency__c":"Semiannual"}' headers: @@ -25,12 +25,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 04:26:08 GMT + - Tue, 29 Aug 2023 18:33:20 GMT Set-Cookie: - - BrowserId=3vJZHTG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:09 + - BrowserId=hziEeUaaEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -43,9 +43,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11833/5000000 + - api-usage=6551/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS" + - "/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT" Content-Type: - application/json;charset=UTF-8 Vary: @@ -54,11 +54,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AsuUAAS","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"id":"01tDE00000IIarVYAT","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:33:20 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -77,12 +77,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:10 GMT + - Tue, 29 Aug 2023 18:33:20 GMT Set-Cookie: - - BrowserId=36My3zG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:10 + - BrowserId=h2ocCkaaEe6U0fN8rRY3OQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -95,7 +95,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11840/5000000 + - api-usage=6551/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -104,14 +104,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:10 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:20 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AsuUAAS","IsActive":true,"UnitPrice":100.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01sDE000008q9JUYAY","Product2Id":"01tDE00000IIarVYAT","IsActive":true,"UnitPrice":100.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -129,12 +129,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 04:26:10 GMT + - Tue, 29 Aug 2023 18:33:20 GMT Set-Cookie: - - BrowserId=39qV2TG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:10 + - BrowserId=h4SpDUaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -147,9 +147,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11845/5000000 + - api-usage=6551/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isk4iAAB" + - "/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM1YAL" Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,11 +158,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000Isk4iAAB","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:11 GMT + string: '{"id":"01uDE00000KVlM1YAL","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:33:20 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -181,12 +181,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:11 GMT + - Tue, 29 Aug 2023 18:33:20 GMT Set-Cookie: - - BrowserId=4BuWnTG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:11 + - BrowserId=h6qAt0aaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -199,7 +199,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11840/5000000 + - api-usage=6553/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -208,14 +208,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:11 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:20 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account body: encoding: UTF-8 - string: '{"Name":"REST Account 2023-08-03 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-08-29 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -233,12 +233,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 04:26:11 GMT + - Tue, 29 Aug 2023 18:33:21 GMT Set-Cookie: - - BrowserId=4GCOzDG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:11 + - BrowserId=h8LDiEaaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -251,9 +251,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11846/5000000 + - api-usage=6551/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU" + - "/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW" Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,11 +262,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iaQ1RAAU","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:12 GMT + string: '{"id":"001DE000036VQjRYAW","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:33:21 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -285,12 +285,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:12 GMT + - Tue, 29 Aug 2023 18:33:21 GMT Set-Cookie: - - BrowserId=4LtZIzG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:12 + - BrowserId=h_myGUaaEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -303,7 +303,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11841/5000000 + - api-usage=6551/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -312,14 +312,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:12 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:21 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-03 00:00:00 UTC","CloseDate":"2023-08-03","StageName":"Closed/Won","AccountId":"0017e00001iaQ1RAAU"}' + string: '{"Name":"REST Opportunity 2023-08-29 00:00:00 UTC","CloseDate":"2023-08-29","StageName":"Closed/Won","AccountId":"001DE000036VQjRYAW"}' headers: User-Agent: - Faraday v2.4.0 @@ -337,12 +337,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 04:26:12 GMT + - Tue, 29 Aug 2023 18:33:21 GMT Set-Cookie: - - BrowserId=4PH5ijG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:12 + - BrowserId=iBN7NUaaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -355,9 +355,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11843/5000000 + - api-usage=6552/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL" + - "/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS" Content-Type: - application/json;charset=UTF-8 Vary: @@ -366,14 +366,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000OCuXtAAL","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:12 GMT + string: '{"id":"006DE00000wQl9LYAS","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:33:21 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 - string: '{"LastName":"Bianco","Email":"semi_annual_day_proration@example.com"}' + string: '{"LastName":"Bianco","Email":"semi_annual_day_proration_2@example.com"}' headers: User-Agent: - Faraday v2.4.0 @@ -391,12 +391,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 04:26:13 GMT + - Tue, 29 Aug 2023 18:33:21 GMT Set-Cookie: - - BrowserId=4T2ohTG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:13 + - BrowserId=iEIs30aaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -409,9 +409,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11848/5000000 + - api-usage=6554/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jIBSLAA4" + - "/services/data/v58.0/sobjects/Contact/003DE00002WlR3hYAF" Content-Type: - application/json;charset=UTF-8 Vary: @@ -420,14 +420,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jIBSLAA4","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:13 GMT + string: '{"id":"003DE00002WlR3hYAF","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:33:22 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c body: encoding: UTF-8 - string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0067e00000OCuXtAAL","SBQQ__PrimaryContact__c":"0037e00001jIBSLAA4","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-03","SBQQ__SubscriptionTerm__c":24}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"006DE00000wQl9LYAS","SBQQ__PrimaryContact__c":"003DE00002WlR3hYAF","SBQQ__PricebookId__c":"01sDE000008q9JUYAY","SBQQ__StartDate__c":"2023-08-29","SBQQ__SubscriptionTerm__c":24}' headers: User-Agent: - Faraday v2.4.0 @@ -445,12 +445,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 04:26:13 GMT + - Tue, 29 Aug 2023 18:33:22 GMT Set-Cookie: - - BrowserId=4YQnhTG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:13 + - BrowserId=iGxKAUaaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -463,9 +463,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11844/5000000 + - api-usage=6552/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD" Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDKjkAAH","success":true,"errors":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:14 GMT + string: '{"id":"a0zDE00000LMv0yYAD","success":true,"errors":[]}' + recorded_at: Tue, 29 Aug 2023 18:33:22 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:14 GMT + - Tue, 29 Aug 2023 18:33:23 GMT Set-Cookie: - - BrowserId=4fQnYTG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:14 + - BrowserId=iO5ybkaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -515,7 +515,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11849/5000000 + - api-usage=6556/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -524,11 +524,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:14 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:23 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDKjkAAH + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0zDE00000LMv0yYAD body: encoding: US-ASCII string: '' @@ -547,12 +547,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:14 GMT + - Tue, 29 Aug 2023 18:33:23 GMT Set-Cookie: - - BrowserId=4ihWyzG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:14 + - BrowserId=iQYZAEaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -572,17 +572,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH\"},\"Id\":\"a0z7e00000BDKjkAAH\",\"Name\":\"Q-01322\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD\"},\"Id\":\"a0zDE00000LMv0yYAD\",\"Name\":\"Q-00124\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuXtAAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL\"},\"Id\":\"0067e00000OCuXtAAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjkAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:15 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9LYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS\"},\"Id\":\"006DE00000wQl9LYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv0yYAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:33:23 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AsuUAAS + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01tDE00000IIarVYAT body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01sDE000008q9JUYAY\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -600,12 +600,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:15 GMT + - Tue, 29 Aug 2023 18:33:23 GMT Set-Cookie: - - BrowserId=4qau-jG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:15 + - BrowserId=iVjz90aaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -623,23 +623,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One - per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isk4iAAB\"},\"Product2Id\":\"01t7e000009AsuUAAS\",\"Id\":\"01u7e00000Isk4iAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":100.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Thu, 03 Aug 2023 04:26:16 GMT + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM1YAL\"},\"Product2Id\":\"01tDE00000IIarVYAT\",\"Id\":\"01uDE00000KVlM1YAL\",\"Pricebook2Id\":\"01sDE000008q9JUYAY\",\"UnitPrice\":100.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Tue, 29 Aug 2023 18:33:24 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder body: encoding: UTF-8 - string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH\"},\"Id\":\"a0z7e00000BDKjkAAH\",\"Name\":\"Q-01322\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD\"},\"Id\":\"a0zDE00000LMv0yYAD\",\"Name\":\"Q-00124\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuXtAAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL\"},\"Id\":\"0067e00000OCuXtAAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjkAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9LYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS\"},\"Id\":\"006DE00000wQl9LYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv0yYAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One - per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isk4iAAB\"},\"Product2Id\":\"01t7e000009AsuUAAS\",\"Id\":\"01u7e00000Isk4iAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":100.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM1YAL\"},\"Product2Id\":\"01tDE00000IIarVYAT\",\"Id\":\"01uDE00000KVlM1YAL\",\"Pricebook2Id\":\"01sDE000008q9JUYAY\",\"UnitPrice\":100.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -657,12 +657,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:16 GMT + - Tue, 29 Aug 2023 18:33:24 GMT Set-Cookie: - - BrowserId=4xat5jG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:16 + - BrowserId=iahMG0aaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -680,28 +680,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH\"},\"Id\":\"a0z7e00000BDKjkAAH\",\"Name\":\"Q-01322\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD\"},\"Id\":\"a0zDE00000LMv0yYAD\",\"Name\":\"Q-00124\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuXtAAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL\"},\"Id\":\"0067e00000OCuXtAAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjkAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":200.00,\"netNonSegmentTotal\":200.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKjkAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isk4iAAB\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0002898\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":100.00,\"SBQQ__OriginalPrice__c\":100.00,\"SBQQ__NetPrice__c\":200.00,\"SBQQ__NetTotal__c\":200.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":100.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:17 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9LYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS\"},\"Id\":\"006DE00000wQl9LYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv0yYAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":200.00,\"netNonSegmentTotal\":200.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv0yYAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM1YAL\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0000317\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":100.00,\"SBQQ__OriginalPrice__c\":100.00,\"SBQQ__NetPrice__c\":200.00,\"SBQQ__NetTotal__c\":200.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":100.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:33:25 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator body: encoding: UTF-8 - string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH\"},\"Id\":\"a0z7e00000BDKjkAAH\",\"Name\":\"Q-01322\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD\"},\"Id\":\"a0zDE00000LMv0yYAD\",\"Name\":\"Q-00124\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuXtAAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL\"},\"Id\":\"0067e00000OCuXtAAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjkAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":200.0,\"netNonSegmentTotal\":200.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKjkAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isk4iAAB\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0002898\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__NetPrice__c\":200.0,\"SBQQ__NetTotal__c\":200.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9LYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS\"},\"Id\":\"006DE00000wQl9LYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv0yYAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":200.0,\"netNonSegmentTotal\":200.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv0yYAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM1YAL\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0000317\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__NetPrice__c\":200.0,\"SBQQ__NetTotal__c\":200.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' headers: User-Agent: - Faraday v2.4.0 @@ -719,12 +719,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:18 GMT + - Tue, 29 Aug 2023 18:33:25 GMT Set-Cookie: - - BrowserId=5BAp8DG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:18 + - BrowserId=imWCLkaaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -742,28 +742,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH\"},\"Id\":\"a0z7e00000BDKjkAAH\",\"Name\":\"Q-01322\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":200.00,\"SBQQ__CustomerAmount__c\":200.00,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD\"},\"Id\":\"a0zDE00000LMv0yYAD\",\"Name\":\"Q-00124\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":200.00,\"SBQQ__CustomerAmount__c\":200.00,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuXtAAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL\"},\"Id\":\"0067e00000OCuXtAAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjkAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":200.00,\"netNonSegmentTotal\":200.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKjkAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isk4iAAB\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0002899\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":100.00,\"SBQQ__OriginalPrice__c\":100.00,\"SBQQ__NetPrice__c\":200.00,\"SBQQ__NetTotal__c\":200.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":100.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:19 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9LYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS\"},\"Id\":\"006DE00000wQl9LYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv0yYAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":200.00,\"netNonSegmentTotal\":200.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv0yYAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM1YAL\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0000318\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":100.00,\"SBQQ__OriginalPrice__c\":100.00,\"SBQQ__NetPrice__c\":200.00,\"SBQQ__NetTotal__c\":200.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":100.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:33:26 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter body: encoding: UTF-8 - string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH\"},\"Id\":\"a0z7e00000BDKjkAAH\",\"Name\":\"Q-01322\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__NetAmount__c\":200.0,\"SBQQ__CustomerAmount__c\":200.0,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD\"},\"Id\":\"a0zDE00000LMv0yYAD\",\"Name\":\"Q-00124\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__NetAmount__c\":200.0,\"SBQQ__CustomerAmount__c\":200.0,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuXtAAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL\"},\"Id\":\"0067e00000OCuXtAAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjkAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":200.0,\"netNonSegmentTotal\":200.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKjkAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isk4iAAB\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0002899\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__NetPrice__c\":200.0,\"SBQQ__NetTotal__c\":200.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9LYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS\"},\"Id\":\"006DE00000wQl9LYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv0yYAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":200.0,\"netNonSegmentTotal\":200.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv0yYAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM1YAL\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0000318\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__NetPrice__c\":200.0,\"SBQQ__NetTotal__c\":200.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -781,12 +781,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:19 GMT + - Tue, 29 Aug 2023 18:33:26 GMT Set-Cookie: - - BrowserId=5OwxMzG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:19 + - BrowserId=ixQ4u0aaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -806,18 +806,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":200.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":200.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjkAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\",\"Id\":\"0067e00000OCuXtAAL\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaQ1RAAU\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-03 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-01322\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":24.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000OCuXtAAL\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDKjkAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":200.0,\"netNonSegmentTotal\":200.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjkAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYD6AAM\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__Existing__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__SegmentIndex__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKjkAAH\",\"SBQQ__ProratedListPrice__c\":200.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":200.0,\"Id\":\"a0v7e000008xYD6AAM\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":200.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":200.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":2.0,\"Name\":\"QL-0002899\",\"SBQQ__CustomerPrice__c\":200.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":200.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isk4iAAB\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":200.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009AsuUAAS\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__SegmentLabel__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:19 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":200.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":200.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS\"},\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv0yYAD\",\"AccountId\":\"001DE000036VQjRYAW\",\"Id\":\"006DE00000wQl9LYAS\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"001DE000036VQjRYAW\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-08-29 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00124\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":24.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01sDE000008q9JUYAY\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9LYAS\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0zDE00000LMv0yYAD\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":200.0,\"netNonSegmentTotal\":200.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv0yYAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9Oq9YAF\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__Existing__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__SegmentIndex__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv0yYAD\",\"SBQQ__ProratedListPrice__c\":200.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":200.0,\"Id\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":200.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":200.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":2.0,\"Name\":\"QL-0000318\",\"SBQQ__CustomerPrice__c\":200.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":200.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01uDE00000KVlM1YAL\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":200.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01tDE00000IIarVYAT\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__SegmentLabel__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":200.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:33:26 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -838,12 +838,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:20 GMT + - Tue, 29 Aug 2023 18:33:27 GMT Set-Cookie: - - BrowserId=5USxgTG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:20 + - BrowserId=i1wXDUaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -858,14 +858,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11853/5000000 + - api-usage=6558/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:21 GMT + recorded_at: Tue, 29 Aug 2023 18:33:28 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH/SBQQ__Orders__r + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -884,12 +884,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:21 GMT + - Tue, 29 Aug 2023 18:33:28 GMT Set-Cookie: - - BrowserId=5mt-wDG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:21 + - BrowserId=jBUt6kaaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -902,7 +902,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11825/5000000 + - api-usage=6557/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -911,12 +911,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nRMWAA2"},"Id":"8017e000000nRMWAA2","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuXtAAL","EffectiveDate":"2023-08-03","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00001404","TotalAmount":200.0,"CreatedDate":"2023-08-03T04:26:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:26:21.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":200.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:22 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/801DE0000048GRtYAM"},"Id":"801DE0000048GRtYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9LYAS","EffectiveDate":"2023-08-29","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00000223","TotalAmount":200.0,"CreatedDate":"2023-08-29T18:33:27.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:28.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:33:28.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":200.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:28 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -937,12 +937,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:22 GMT + - Tue, 29 Aug 2023 18:33:28 GMT Set-Cookie: - - BrowserId=5qiuQjG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:22 + - BrowserId=jDAI_0aaEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -957,14 +957,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11843/5000000 + - api-usage=6556/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:22 GMT + recorded_at: Tue, 29 Aug 2023 18:33:28 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM body: encoding: US-ASCII string: '' @@ -983,12 +983,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:23 GMT + - Tue, 29 Aug 2023 18:33:29 GMT Set-Cookie: - - BrowserId=5yNcjTG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:23 + - BrowserId=jH_9zUaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1001,9 +1001,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11844/5000000 + - api-usage=6558/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:26:22 GMT + - Tue, 29 Aug 2023 18:33:29 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1012,12 +1012,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2"},"Id":"8017e000000nRMWAA2","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuXtAAL","EffectiveDate":"2023-08-03","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T04:26:22.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001404","TotalAmount":200.0,"CreatedDate":"2023-08-03T04:26:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:26:22.000+0000","LastViewedDate":"2023-08-03T04:26:22.000+0000","LastReferencedDate":"2023-08-03T04:26:22.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":200.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Thu, 03 Aug 2023 04:26:23 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM"},"Id":"801DE0000048GRtYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9LYAS","EffectiveDate":"2023-08-29","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:33:28.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000223","TotalAmount":200.0,"CreatedDate":"2023-08-29T18:33:27.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:29.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:33:29.000+0000","LastViewedDate":"2023-08-29T18:33:28.000+0000","LastReferencedDate":"2023-08-29T18:33:28.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":200.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Tue, 29 Aug 2023 18:33:29 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM body: encoding: UTF-8 string: '{"SBQQ__Contracted__c":true}' @@ -1038,12 +1039,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:23 GMT + - Tue, 29 Aug 2023 18:33:29 GMT Set-Cookie: - - BrowserId=51s1yzG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:23 + - BrowserId=jJl4w0aaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1058,14 +1059,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11845/5000000 + - api-usage=6558/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:25 GMT + recorded_at: Tue, 29 Aug 2023 18:33:30 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Contract%20WHERE%20SBQQ__Order__c%20=%20%278017e000000nRMWAA2%27 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Contract%20WHERE%20SBQQ__Order__c%20=%20%27801DE0000048GRtYAM%27 body: encoding: US-ASCII string: '' @@ -1084,12 +1085,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:25 GMT + - Tue, 29 Aug 2023 18:33:30 GMT Set-Cookie: - - BrowserId=6KwgXjG1Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:25 + - BrowserId=jYvvhUaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1102,7 +1103,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11825/5000000 + - api-usage=6556/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1111,11 +1112,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2"},"Id":"8007e000001iCPUAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:25 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA"},"Id":"800DE000001ls86YAA"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:30 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA body: encoding: US-ASCII string: '' @@ -1134,12 +1135,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:26 GMT + - Tue, 29 Aug 2023 18:33:31 GMT Set-Cookie: - - BrowserId=6OJK1zG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:26 + - BrowserId=jaMg_0aaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1152,9 +1153,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11845/5000000 + - api-usage=6559/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:26:24 GMT + - Tue, 29 Aug 2023 18:33:30 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1163,12 +1164,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2"},"Id":"8007e000001iCPUAA2","AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":null,"OwnerExpirationNotice":null,"StartDate":"2023-08-03","EndDate":"2025-08-02","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ContractTerm":24,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","CompanySignedId":null,"CompanySignedDate":null,"CustomerSignedId":null,"CustomerSignedTitle":null,"CustomerSignedDate":null,"SpecialTerms":null,"ActivatedById":null,"ActivatedDate":null,"StatusCode":"Draft","Description":null,"IsDeleted":false,"ContractNumber":"00000366","LastApprovedDate":null,"CreatedDate":"2023-08-03T04:26:24.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:24.000+0000","LastActivityDate":null,"LastViewedDate":null,"LastReferencedDate":null,"SBQQ__AmendmentOpportunityRecordTypeId__c":null,"SBQQ__AmendmentOpportunityStage__c":null,"SBQQ__AmendmentOwner__c":null,"SBQQ__AmendmentPricebookId__c":null,"SBQQ__AmendmentRenewalBehavior__c":"Latest - End Date","SBQQ__AmendmentStartDate__c":null,"SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-02","SBQQ__MDQRenewalBehavior__c":null,"SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0067e00000OCuXtAAL","SBQQ__Order__c":"8017e000000nRMWAA2","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalOpportunityRecordTypeId__c":null,"SBQQ__RenewalOpportunityStage__c":null,"SBQQ__RenewalOpportunity__c":null,"SBQQ__RenewalOwner__c":null,"SBQQ__RenewalPricebookId__c":null,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0.0,"SBQQ__OpportunityPricebookId__c":null}' - recorded_at: Thu, 03 Aug 2023 04:26:26 GMT + string: '{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA"},"Id":"800DE000001ls86YAA","AccountId":"001DE000036VQjRYAW","Pricebook2Id":null,"OwnerExpirationNotice":null,"StartDate":"2023-08-29","EndDate":"2025-08-28","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ContractTerm":24,"OwnerId":"005DE00000JiwzhYAB","Status":"Draft","CompanySignedId":null,"CompanySignedDate":null,"CustomerSignedId":null,"CustomerSignedTitle":null,"CustomerSignedDate":null,"SpecialTerms":null,"ActivatedById":null,"ActivatedDate":null,"StatusCode":"Draft","Description":null,"IsDeleted":false,"ContractNumber":"00000142","LastApprovedDate":null,"CreatedDate":"2023-08-29T18:33:30.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:30.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:30.000+0000","LastActivityDate":null,"LastViewedDate":null,"LastReferencedDate":null,"SBQQ__AmendmentOpportunityRecordTypeId__c":null,"SBQQ__AmendmentOpportunityStage__c":null,"SBQQ__AmendmentOwner__c":null,"SBQQ__AmendmentPricebookId__c":null,"SBQQ__AmendmentRenewalBehavior__c":"Latest + End Date","SBQQ__AmendmentStartDate__c":null,"SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-28","SBQQ__MDQRenewalBehavior__c":null,"SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"006DE00000wQl9LYAS","SBQQ__Order__c":"801DE0000048GRtYAM","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalOpportunityRecordTypeId__c":null,"SBQQ__RenewalOpportunityStage__c":null,"SBQQ__RenewalOpportunity__c":null,"SBQQ__RenewalOwner__c":null,"SBQQ__RenewalPricebookId__c":null,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0.0,"SBQQ__OpportunityPricebookId__c":null}' + recorded_at: Tue, 29 Aug 2023 18:33:30 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=8007e000001iCPUAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=800DE000001ls86YAA body: encoding: UTF-8 string: "{}" @@ -1189,12 +1190,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:26 GMT + - Tue, 29 Aug 2023 18:33:31 GMT Set-Cookie: - - BrowserId=6SCzxDG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:26 + - BrowserId=jbycd0aaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1212,28 +1213,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH\"},\"Id\":\"a0z7e00000BDKjpAAH\",\"Name\":\"Q-01323\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-03\",\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__MasterContract__c\":\"8007e000001iCPUAA2\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD\"},\"Id\":\"a0zDE00000LMv13YAD\",\"Name\":\"Q-00125\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-08-29\",\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__MasterContract__c\":\"800DE000001ls86YAA\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuY1AAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2\"},\"Id\":\"8007e000001iCPUAA2\",\"ContractNumber\":\"00000366\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL\"},\"Id\":\"0067e00000OCuY1AAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjpAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":0.00,\"netNonSegmentTotal\":0.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYDCAA2\"},\"Id\":\"a0v7e000008xYDCAA2\",\"SBQQ__Quote__c\":\"a0z7e00000BDKjpAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0002901\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.00,\"SBQQ__ListPrice__c\":100.00,\"SBQQ__OriginalPrice__c\":100.00,\"SBQQ__NetPrice__c\":200.00,\"SBQQ__NetTotal__c\":0.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":100.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.00,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5CpEAL\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5CpEAL\"},\"Id\":\"a1B7e00000EX5CpEAL\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYD6AAM\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYD6AAM\",\"SBQQ__Contract__c\":\"8007e000001iCPUAA2\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Incomplete__c\":false,\"SBQQ__RequiredBy__r\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:29 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9QYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA\"},\"Id\":\"800DE000001ls86YAA\",\"ContractNumber\":\"00000142\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS\"},\"Id\":\"006DE00000wQl9QYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv13YAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":0.00,\"netNonSegmentTotal\":0.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqFYAV\"},\"Id\":\"a0vDE00000K9OqFYAV\",\"SBQQ__Quote__c\":\"a0zDE00000LMv13YAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0000320\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.00,\"SBQQ__ListPrice__c\":100.00,\"SBQQ__OriginalPrice__c\":100.00,\"SBQQ__NetPrice__c\":200.00,\"SBQQ__NetTotal__c\":0.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":100.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.00,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVr62AE\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVr62AE\"},\"Id\":\"a1BDE000006dVr62AE\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__Contract__c\":\"800DE000001ls86YAA\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Incomplete__c\":false,\"SBQQ__RequiredBy__r\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:33:33 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator body: encoding: UTF-8 - string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH\"},\"Id\":\"a0z7e00000BDKjpAAH\",\"Name\":\"Q-01323\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-23\",\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__MasterContract__c\":\"8007e000001iCPUAA2\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__ContractingMethod__c\":\"By + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD\"},\"Id\":\"a0zDE00000LMv13YAD\",\"Name\":\"Q-00125\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-09-18\",\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__MasterContract__c\":\"800DE000001ls86YAA\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuY1AAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2\"},\"Id\":\"8007e000001iCPUAA2\",\"ContractNumber\":\"00000366\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL\"},\"Id\":\"0067e00000OCuY1AAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjpAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":23,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYDCAA2\"},\"Id\":\"a0v7e000008xYDCAA2\",\"SBQQ__Quote__c\":\"a0z7e00000BDKjpAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0002901\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.0,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__NetPrice__c\":200.0,\"SBQQ__NetTotal__c\":0.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":2,\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.0,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5CpEAL\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5CpEAL\"},\"Id\":\"a1B7e00000EX5CpEAL\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYD6AAM\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYD6AAM\",\"SBQQ__Contract__c\":\"8007e000001iCPUAA2\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Incomplete__c\":false,\"SBQQ__RequiredBy__r\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-03\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9QYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA\"},\"Id\":\"800DE000001ls86YAA\",\"ContractNumber\":\"00000142\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS\"},\"Id\":\"006DE00000wQl9QYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv13YAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":23,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqFYAV\"},\"Id\":\"a0vDE00000K9OqFYAV\",\"SBQQ__Quote__c\":\"a0zDE00000LMv13YAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0000320\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":200.0,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__NetPrice__c\":200.0,\"SBQQ__NetTotal__c\":0.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":200.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":200.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":2.0,\"SBQQ__Quantity__c\":2,\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":200.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":200.0,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVr62AE\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVr62AE\"},\"Id\":\"a1BDE000006dVr62AE\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__Contract__c\":\"800DE000001ls86YAA\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Incomplete__c\":false,\"SBQQ__RequiredBy__r\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-29\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' headers: User-Agent: - Faraday v2.4.0 @@ -1251,12 +1252,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:29 GMT + - Tue, 29 Aug 2023 18:33:33 GMT Set-Cookie: - - BrowserId=6th1eTG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:29 + - BrowserId=jwaBO0aaEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1274,28 +1275,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH\"},\"Id\":\"a0z7e00000BDKjpAAH\",\"Name\":\"Q-01323\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__SubscriptionTerm__c\":23,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-23\",\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__MasterContract__c\":\"8007e000001iCPUAA2\",\"SBQQ__NetAmount__c\":200.00,\"SBQQ__CustomerAmount__c\":200.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD\"},\"Id\":\"a0zDE00000LMv13YAD\",\"Name\":\"Q-00125\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__SubscriptionTerm__c\":23,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-09-18\",\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__MasterContract__c\":\"800DE000001ls86YAA\",\"SBQQ__NetAmount__c\":200.00,\"SBQQ__CustomerAmount__c\":200.00,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuY1AAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2\"},\"Id\":\"8007e000001iCPUAA2\",\"ContractNumber\":\"00000366\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL\"},\"Id\":\"0067e00000OCuY1AAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjpAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":194.68,\"netNonSegmentTotal\":194.6800,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYDCAA2\"},\"Id\":\"a0v7e000008xYDCAA2\",\"SBQQ__Quote__c\":\"a0z7e00000BDKjpAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0002902\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":194.68,\"SBQQ__EffectiveSubscriptionTerm__c\":23,\"SBQQ__ListPrice__c\":100.00,\"SBQQ__OriginalPrice__c\":100.00,\"SBQQ__NetPrice__c\":194.68,\"SBQQ__NetTotal__c\":194.68,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":194.68,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":194.68,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.94680365296803652968036529680365,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":100.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":194.68,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":194.68,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5CpEAL\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5CpEAL\"},\"Id\":\"a1B7e00000EX5CpEAL\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYD6AAM\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYD6AAM\",\"SBQQ__Contract__c\":\"8007e000001iCPUAA2\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-23\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":194.68,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:30 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9QYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA\"},\"Id\":\"800DE000001ls86YAA\",\"ContractNumber\":\"00000142\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS\"},\"Id\":\"006DE00000wQl9QYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv13YAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":194.68,\"netNonSegmentTotal\":194.6800,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqFYAV\"},\"Id\":\"a0vDE00000K9OqFYAV\",\"SBQQ__Quote__c\":\"a0zDE00000LMv13YAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0000321\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":194.68,\"SBQQ__EffectiveSubscriptionTerm__c\":23,\"SBQQ__ListPrice__c\":100.00,\"SBQQ__OriginalPrice__c\":100.00,\"SBQQ__NetPrice__c\":194.68,\"SBQQ__NetTotal__c\":194.68,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":194.68,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":194.68,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.94680365296803652968036529680365,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":100.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":194.68,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":194.68,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVr62AE\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVr62AE\"},\"Id\":\"a1BDE000006dVr62AE\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__Contract__c\":\"800DE000001ls86YAA\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-09-18\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":194.68,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:33:35 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter body: encoding: UTF-8 - string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH\"},\"Id\":\"a0z7e00000BDKjpAAH\",\"Name\":\"Q-01323\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__SubscriptionTerm__c\":23,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-23\",\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__MasterContract__c\":\"8007e000001iCPUAA2\",\"SBQQ__NetAmount__c\":200.0,\"SBQQ__CustomerAmount__c\":200.0,\"SBQQ__ContractingMethod__c\":\"By + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD\"},\"Id\":\"a0zDE00000LMv13YAD\",\"Name\":\"Q-00125\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__SubscriptionTerm__c\":23,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__StartDate__c\":\"2023-09-18\",\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__MasterContract__c\":\"800DE000001ls86YAA\",\"SBQQ__NetAmount__c\":200.0,\"SBQQ__CustomerAmount__c\":200.0,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24,\"SBQQ__LineItemCount__c\":1,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0067e00000OCuY1AAL\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"Id\":\"0017e00001iaQ1RAAU\",\"Name\":\"REST - Account 2023-08-03 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2\"},\"Id\":\"8007e000001iCPUAA2\",\"ContractNumber\":\"00000366\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL\"},\"Id\":\"0067e00000OCuY1AAL\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjpAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":194.68,\"netNonSegmentTotal\":194.68,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYDCAA2\"},\"Id\":\"a0v7e000008xYDCAA2\",\"SBQQ__Quote__c\":\"a0z7e00000BDKjpAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0002902\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":194.68,\"SBQQ__EffectiveSubscriptionTerm__c\":23,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__NetPrice__c\":194.68,\"SBQQ__NetTotal__c\":194.68,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":194.68,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":194.68,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.9468036529680366,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":194.68,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":194.68,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5CpEAL\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"Id\":\"01t7e000009AsuUAAS\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5CpEAL\"},\"Id\":\"a1B7e00000EX5CpEAL\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYD6AAM\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYD6AAM\",\"SBQQ__Contract__c\":\"8007e000001iCPUAA2\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-23\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":194.68,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"006DE00000wQl9QYAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"Id\":\"001DE000036VQjRYAW\",\"Name\":\"REST + Account 2023-08-29 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA\"},\"Id\":\"800DE000001ls86YAA\",\"ContractNumber\":\"00000142\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS\"},\"Id\":\"006DE00000wQl9QYAS\",\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv13YAD\",\"AccountId\":\"001DE000036VQjRYAW\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__PricebookId__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":2,\"netTotal\":194.68,\"netNonSegmentTotal\":194.68,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqFYAV\"},\"Id\":\"a0vDE00000K9OqFYAV\",\"SBQQ__Quote__c\":\"a0zDE00000LMv13YAD\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__Number__c\":1,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"Name\":\"QL-0000321\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":194.68,\"SBQQ__EffectiveSubscriptionTerm__c\":23,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__NetPrice__c\":194.68,\"SBQQ__NetTotal__c\":194.68,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":194.68,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":194.68,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.9468036529680366,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":194.68,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":194.68,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVr62AE\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"Id\":\"01tDE00000IIarVYAT\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVr62AE\"},\"Id\":\"a1BDE000006dVr62AE\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__Contract__c\":\"800DE000001ls86YAA\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-09-18\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":194.68,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -1313,12 +1314,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:30 GMT + - Tue, 29 Aug 2023 18:33:36 GMT Set-Cookie: - - BrowserId=66MYcTG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:30 + - BrowserId=kKCBpkaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1338,18 +1339,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":200.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":200.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKjpAAH\",\"AccountId\":\"0017e00001iaQ1RAAU\",\"Id\":\"0067e00000OCuY1AAL\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaQ1RAAU\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-03 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-01323\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":23.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2025-08-02\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"0017e00001iaQ1RAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-23\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2\"},\"ContractNumber\":\"00000366\",\"Id\":\"8007e000001iCPUAA2\"},\"SBQQ__Opportunity2__c\":\"0067e00000OCuY1AAL\",\"SBQQ__MasterContract__c\":\"8007e000001iCPUAA2\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z7e00000BDKjpAAH\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24.0},\"nextKey\":2,\"netTotal\":194.68,\"netNonSegmentTotal\":194.68,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKjpAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYDCAA2\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__Existing__c\":true,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-03 00:00:00 UTC\",\"SBQQ__SegmentIndex__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKjpAAH\",\"SBQQ__ProratedListPrice__c\":194.68,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":194.68,\"Id\":\"a0v7e000008xYDCAA2\",\"SBQQ__EffectiveSubscriptionTerm__c\":23.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":194.68,\"SBQQ__Quantity__c\":2.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":null,\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5CpEAL\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xYD6AAM\",\"SBQQ__Contract__c\":\"8007e000001iCPUAA2\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xYD6AAM\",\"Id\":\"a1B7e00000EX5CpEAL\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX5CpEAL\",\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":194.68,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":1.9468036529680366,\"Name\":\"QL-0002902\",\"SBQQ__CustomerPrice__c\":194.68,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":194.68,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":194.68,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009AsuUAAS\",\"Name\":\"REST - Product2 2023-08-03 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009AsuUAAS\",\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__SegmentLabel__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-08-23\",\"effectiveEndDate\":\"2025-08-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":194.68,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Thu, 03 Aug 2023 04:26:31 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":200.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":200.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS\"},\"SBQQ__PrimaryQuote__c\":\"a0zDE00000LMv13YAD\",\"AccountId\":\"001DE000036VQjRYAW\",\"Id\":\"006DE00000wQl9QYAS\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"001DE000036VQjRYAW\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-08-29 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00125\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":23.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2025-08-28\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"001DE000036VQjRYAW\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-09-18\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-09-28\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA\"},\"ContractNumber\":\"00000142\",\"Id\":\"800DE000001ls86YAA\"},\"SBQQ__Opportunity2__c\":\"006DE00000wQl9QYAS\",\"SBQQ__MasterContract__c\":\"800DE000001ls86YAA\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0zDE00000LMv13YAD\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":24.0},\"nextKey\":2,\"netTotal\":194.68,\"netNonSegmentTotal\":194.68,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0zDE00000LMv13YAD\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqFYAV\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":100.0,\"SBQQ__Existing__c\":true,\"SBQQ__ProductName__c\":\"REST + Product2 2023-08-29 00:00:00 UTC\",\"SBQQ__SegmentIndex__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0zDE00000LMv13YAD\",\"SBQQ__ProratedListPrice__c\":194.68,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":194.68,\"Id\":\"a0vDE00000K9OqFYAV\",\"SBQQ__EffectiveSubscriptionTerm__c\":23.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":194.68,\"SBQQ__Quantity__c\":2.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":null,\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVr62AE\"},\"SBQQ__OriginalQuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"SBQQ__Contract__c\":\"800DE000001ls86YAA\",\"SBQQ__QuoteLine__c\":\"a0vDE00000K9Oq9YAF\",\"Id\":\"a1BDE000006dVr62AE\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1BDE000006dVr62AE\",\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":100.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":194.68,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":1.9468036529680366,\"Name\":\"QL-0000321\",\"SBQQ__CustomerPrice__c\":194.68,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":194.68,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":194.68,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01tDE00000IIarVYAT\",\"Name\":\"REST + Product2 2023-08-29 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Semiannual\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01tDE00000IIarVYAT\",\"SBQQ__SpecialPrice__c\":100.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__SegmentLabel__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-09-18\",\"effectiveEndDate\":\"2025-08-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":194.68,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Tue, 29 Aug 2023 18:33:36 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true body: encoding: US-ASCII string: '' @@ -1368,12 +1369,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:31 GMT + - Tue, 29 Aug 2023 18:33:36 GMT Set-Cookie: - - BrowserId=7BqScjG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:31 + - BrowserId=kOE0MkaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1386,7 +1387,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11868/5000000 + - api-usage=6562/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1395,14 +1396,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:31 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:36 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD body: encoding: UTF-8 - string: '{"SBQQ__PricebookId__c":"01s7e000002eLFEAA2"}' + string: '{"SBQQ__PricebookId__c":"01sDE000008q9JUYAY"}' headers: User-Agent: - Faraday v2.4.0 @@ -1420,12 +1421,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:31 GMT + - Tue, 29 Aug 2023 18:33:36 GMT Set-Cookie: - - BrowserId=7E5NJjG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:31 + - BrowserId=kQsDPEaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1440,14 +1441,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11877/5000000 + - api-usage=6560/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:33 GMT + recorded_at: Tue, 29 Aug 2023 18:33:37 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -1468,12 +1469,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:34 GMT + - Tue, 29 Aug 2023 18:33:38 GMT Set-Cookie: - - BrowserId=7aIddDG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:34 + - BrowserId=kdtyqEaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1488,14 +1489,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11878/5000000 + - api-usage=6561/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:35 GMT + recorded_at: Tue, 29 Aug 2023 18:33:39 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH/SBQQ__Orders__r + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -1514,12 +1515,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:36 GMT + - Tue, 29 Aug 2023 18:33:39 GMT Set-Cookie: - - BrowserId=7vK43TG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:36 + - BrowserId=ks76qEaaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1532,7 +1533,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11877/5000000 + - api-usage=6560/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1541,12 +1542,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nRMgAAM"},"Id":"8017e000000nRMgAAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuY1AAL","EffectiveDate":"2023-08-23","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00001405","TotalAmount":194.68,"CreatedDate":"2023-08-03T04:26:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:35.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:26:35.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:36 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/801DE0000048GRyYAM"},"Id":"801DE0000048GRyYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9QYAS","EffectiveDate":"2023-09-18","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00000224","TotalAmount":194.68,"CreatedDate":"2023-08-29T18:33:38.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:39.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:33:39.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:39 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -1567,12 +1568,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:36 GMT + - Tue, 29 Aug 2023 18:33:39 GMT Set-Cookie: - - BrowserId=7y7XhTG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:36 + - BrowserId=kubv90aaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1587,14 +1588,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11878/5000000 + - api-usage=6563/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:37 GMT + recorded_at: Tue, 29 Aug 2023 18:33:40 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM body: encoding: US-ASCII string: '' @@ -1613,12 +1614,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:37 GMT + - Tue, 29 Aug 2023 18:33:40 GMT Set-Cookie: - - BrowserId=760vhjG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:37 + - BrowserId=kz2ayEaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1631,9 +1632,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11869/5000000 + - api-usage=6562/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:26:36 GMT + - Tue, 29 Aug 2023 18:33:40 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1642,12 +1643,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM"},"Id":"8017e000000nRMgAAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuY1AAL","EffectiveDate":"2023-08-23","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T04:26:36.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001405","TotalAmount":194.68,"CreatedDate":"2023-08-03T04:26:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:36.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:26:36.000+0000","LastViewedDate":"2023-08-03T04:26:36.000+0000","LastReferencedDate":"2023-08-03T04:26:36.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Thu, 03 Aug 2023 04:26:37 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM"},"Id":"801DE0000048GRyYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9QYAS","EffectiveDate":"2023-09-18","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:33:40.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000224","TotalAmount":194.68,"CreatedDate":"2023-08-29T18:33:38.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:40.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:33:40.000+0000","LastViewedDate":"2023-08-29T18:33:39.000+0000","LastReferencedDate":"2023-08-29T18:33:39.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Tue, 29 Aug 2023 18:33:40 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM body: encoding: US-ASCII string: '' @@ -1666,12 +1668,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:37 GMT + - Tue, 29 Aug 2023 18:33:40 GMT Set-Cookie: - - BrowserId=7-YZITG1Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:37 + - BrowserId=k1SlZEaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1684,9 +1686,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11857/5000000 + - api-usage=6559/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:26:36 GMT + - Tue, 29 Aug 2023 18:33:40 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1695,15 +1697,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM"},"Id":"8017e000000nRMgAAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuY1AAL","EffectiveDate":"2023-08-23","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T04:26:36.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001405","TotalAmount":194.68,"CreatedDate":"2023-08-03T04:26:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:36.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:26:36.000+0000","LastViewedDate":"2023-08-03T04:26:37.000+0000","LastReferencedDate":"2023-08-03T04:26:37.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Thu, 03 Aug 2023 04:26:37 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM"},"Id":"801DE0000048GRyYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9QYAS","EffectiveDate":"2023-09-18","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:33:40.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000224","TotalAmount":194.68,"CreatedDate":"2023-08-29T18:33:38.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:40.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:33:40.000+0000","LastViewedDate":"2023-08-29T18:33:40.000+0000","LastReferencedDate":"2023-08-29T18:33:40.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Tue, 29 Aug 2023 18:33:40 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nRMgAAM"]}' + string: '{"order_ids":["801DE0000048GRyYAM"]}' headers: User-Agent: - Faraday v2.4.0 @@ -1721,12 +1724,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:38 GMT + - Tue, 29 Aug 2023 18:33:40 GMT Set-Cookie: - - BrowserId=8B5n-DG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:38 + - BrowserId=k2xMBkaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1746,37 +1749,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL"},"Id":"0067e00000OCuY1AAL","IsDeleted":false,"AccountId":"0017e00001iaQ1RAAU","IsPrivate":false,"Name":"Amendment - for contract #00000366","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-03","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:27.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-03T04:26:27.000+0000","LastReferencedDate":"2023-08-03T04:26:27.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCPUAA2","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKjpAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU"},"Id":"0017e00001iaQ1RAAU","IsDeleted":false,"Name":"REST - Account 2023-08-03 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaQ1RAAU","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:12.000+0000","LastViewedDate":"2023-08-03T04:26:12.000+0000","LastReferencedDate":"2023-08-03T04:26:12.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["0017e00001iaQ1RAAU"],"Opportunities":["0067e00000OCuY1AAL"],"SBQQ__RegularAmount__c":194.68,"SBQQ__NetAmount__c":194.68,"SBQQ__ListAmount__c":194.68,"SBQQ__CustomerAmount__c":194.68,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-01","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":23,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-08-23","SBQQ__ShippingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__RenewalTerm__c":24,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0067e00000OCuY1AAL","SBQQ__MasterContract__c":"8007e000001iCPUAA2","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-03T04:26:34.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-03T04:26:28.000+0000","SBQQ__EndDate__c":"2025-08-02","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS"},"Id":"006DE00000wQl9QYAS","IsDeleted":false,"AccountId":"001DE000036VQjRYAW","IsPrivate":false,"Name":"Amendment + for contract #00000142","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:31.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:31.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:31.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-08-29T18:33:31.000+0000","LastReferencedDate":"2023-08-29T18:33:31.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"800DE000001ls86YAA","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0zDE00000LMv13YAD","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW"},"Id":"001DE000036VQjRYAW","IsDeleted":false,"Name":"REST + Account 2023-08-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/001DE000036VQjRYAW","OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:21.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:21.000+0000","LastViewedDate":"2023-08-29T18:33:21.000+0000","LastReferencedDate":"2023-08-29T18:33:21.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["001DE000036VQjRYAW"],"Opportunities":["006DE00000wQl9QYAS"],"SBQQ__RegularAmount__c":194.68,"SBQQ__NetAmount__c":194.68,"SBQQ__ListAmount__c":194.68,"SBQQ__CustomerAmount__c":194.68,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-28","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":23,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-09-18","SBQQ__ShippingName__c":"REST + Account 2023-08-29 00:00:00 UTC","SBQQ__SalesRep__c":"005DE00000JiwzhYAB","SBQQ__RenewalTerm__c":24,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01sDE000008q9JUYAY","SBQQ__PriceBook__c":"01sDE000008q9JUYAY","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"006DE00000wQl9QYAS","SBQQ__MasterContract__c":"800DE000001ls86YAA","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-29T18:33:38.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-29T18:33:33.000+0000","SBQQ__EndDate__c":"2025-08-28","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__Account__c":"0017e00001iaQ1RAAU","LastReferencedDate":"2023-08-03T04:26:34.000+0000","LastViewedDate":"2023-08-03T04:26:34.000+0000","SystemModstamp":"2023-08-03T04:26:34.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:34.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:27.000+0000","Name":"Q-01323","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKjpAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS"},"Id":"01t7e000009AsuUAAS","Name":"REST - Product2 2023-08-03 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-03T04:26:09.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:11.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-08-29 00:00:00 UTC","SBQQ__Account__c":"001DE000036VQjRYAW","LastReferencedDate":"2023-08-29T18:33:38.000+0000","LastViewedDate":"2023-08-29T18:33:38.000+0000","SystemModstamp":"2023-08-29T18:33:38.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:38.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:31.000+0000","Name":"Q-00125","IsDeleted":false,"OwnerId":"005DE00000JiwzhYAB","Id":"a0zDE00000LMv13YAD","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT"},"Id":"01tDE00000IIarVYAT","Name":"REST + Product2 2023-08-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-08-29T18:33:20.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:20.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:20.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One per quote line","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isk4iAAB"},"Id":"01u7e00000Isk4iAAB","Name":"REST - Product2 2023-08-03 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AsuUAAS","UnitPrice":100.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-03T04:26:11.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:11.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:11.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2"},"Id":"8007e000001iCPUAA2","AccountId":"0017e00001iaQ1RAAU","StartDate":"2023-08-03","EndDate":"2025-08-02","BillingAddress":null,"ContractTerm":24,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000366","CreatedDate":"2023-08-03T04:26:24.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:24.000+0000","LastViewedDate":"2023-08-03T04:26:26.000+0000","LastReferencedDate":"2023-08-03T04:26:26.000+0000","SBQQ__AmendmentRenewalBehavior__c":"Latest - End Date","SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-02","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0067e00000OCuXtAAL","SBQQ__Order__c":"8017e000000nRMWAA2","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYDCAA2"},"Id":"a0v7e000008xYDCAA2","IsDeleted":false,"Name":"QL-0002902","CreatedDate":"2023-08-03T04:26:28.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:33.000+0000","SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":194.68,"SBQQ__Description__c":"A - great description","SBQQ__Existing__c":true,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":100.00,"SBQQ__NetPrice__c":194.68,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":100.00,"SBQQ__PartnerPrice__c":194.68,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isk4iAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AsuUAAS","SBQQ__ProrateMultiplier__c":1.94680365296803652968036529680365,"SBQQ__ProratedListPrice__c":194.68,"SBQQ__ProratedPrice__c":194.68,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":194.68,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpgradedSubscription__c":"a1B7e00000EX5CpEAL","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":194.68,"SBQQ__EffectiveEndDate__c":"2025-08-02","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-23","SBQQ__EffectiveSubscriptionTerm__c":23,"SBQQ__ListTotal__c":194.68,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":194.68,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":194.68,"SBQQ__PackageTotal__c":194.68,"SBQQ__PartnerTotal__c":194.68,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RegularTotal__c":194.68,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYD6AAM"},"Id":"a0v7e000008xYD6AAM","IsDeleted":false,"Name":"QL-0002900","CreatedDate":"2023-08-03T04:26:19.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:19.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:19.000+0000","SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":200.00,"SBQQ__Description__c":"A - great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":100.00,"SBQQ__NetPrice__c":200.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":100.00,"SBQQ__PartnerPrice__c":200.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isk4iAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AsuUAAS","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":200.00,"SBQQ__ProratedPrice__c":200.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":200.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":200.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-03","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":200.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":200.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":200.00,"SBQQ__PackageTotal__c":200.00,"SBQQ__PartnerTotal__c":200.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RegularTotal__c":200.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5CpEAL"},"Id":"a1B7e00000EX5CpEAL","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000338","CreatedDate":"2023-08-03T04:26:24.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:24.000+0000","SBQQ__Account__c":"0017e00001iaQ1RAAU","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCPUAA2","SBQQ__CustomerPrice__c":200.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":200.00,"SBQQ__NetPrice__c":200.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8027e000001bQsEAAU","SBQQ__OriginalQuoteLine__c":"a0v7e000008xYD6AAM","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AsuUAAS","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xYD6AAM","SBQQ__RegularPrice__c":200.00,"SBQQ__RenewalPrice__c":100.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX5CpEAL","SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-03","SBQQ__ContractNumber__c":"00000366","SBQQ__EndDate__c":"2025-08-02","SBQQ__ProductId__c":"01t7e000009AsuU","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009AsuU","SBQQ__StartDate__c":"2023-08-03","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009AsuUAAS"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":194.68,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8027e000001bQsEAAU","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":100.00,"SBQQ__QuoteLine__c":"a0v7e000008xYDCAA2","SBQQ__ProrateMultiplier__c":1.94680365296803652968036529680365,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"Quantity - Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Activated__c":true,"OrderItemNumber":"0000001431","SystemModstamp":"2023-08-03T04:26:36.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:36.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:35.000+0000","EndDate":"2025-08-02","ServiceDate":"2023-08-23","TotalPrice":194.68,"ListPrice":100.00,"UnitPrice":194.68,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isk4iAAB","OrderId":"8017e000000nRMgAAM","IsDeleted":false,"Product2Id":"01t7e000009AsuUAAS","Id":"8027e000001bQsOAAU","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQsOAAU","type":"OrderItem"}},{"Contracts":["8007e000001iCPUAA2"],"PricebookEntries":[],"Products":["01t7e000009AsuUAAS"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":200.00,"SBQQ__Subscription__c":"a1B7e00000EX5CpEAL","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":100.00,"SBQQ__QuoteLine__c":"a0v7e000008xYD6AAM","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":true,"SBQQ__Contract__c":"8007e000001iCPUAA2","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Activated__c":true,"OrderItemNumber":"0000001430","SystemModstamp":"2023-08-03T04:26:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:24.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:21.000+0000","EndDate":"2025-08-02","ServiceDate":"2023-08-03","TotalPrice":200.00,"ListPrice":100.00,"UnitPrice":200.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isk4iAAB","OrderId":"8017e000000nRMWAA2","IsDeleted":false,"Product2Id":"01t7e000009AsuUAAS","Id":"8027e000001bQsEAAU","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQsEAAU","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL"},"Id":"0067e00000OCuXtAAL","IsDeleted":false,"AccountId":"0017e00001iaQ1RAAU","IsPrivate":false,"Name":"REST - Opportunity 2023-08-03 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-03","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:14.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:14.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-03T04:26:12.000+0000","LastReferencedDate":"2023-08-03T04:26:12.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKjkAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000OCuY1AAL"],"Accounts":["0017e00001iaQ1RAAU"],"OrderItems":["8027e000001bQsOAAU"],"Quotes":["a0z7e00000BDKjpAAH"],"InitialOrderQuotes":["a0z7e00000BDKjkAAH"],"InitialOrderId":["8017e000000nRMWAA2"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKjkAAH","Id":"8007e000001iCPUAA2","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCPUAA2","Id":"0067e00000OCuY1AAL","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":194.68,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":24,"SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__PriceCalcStatus__c":"Queued","SBQQ__PaymentTerm__c":"Net - 30","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-03T04:26:37.000+0000","LastViewedDate":"2023-08-03T04:26:37.000+0000","SystemModstamp":"2023-08-03T04:26:36.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:36.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:35.000+0000","TotalAmount":194.68,"OrderNumber":"00001405","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-03T04:26:36.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-23","OpportunityId":"0067e00000OCuY1AAL","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaQ1RAAU","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nRMgAAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000OCuXtAAL"],"Accounts":["0017e00001iaQ1RAAU"],"OrderItems":["8027e000001bQsEAAU"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":200.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__PriceCalcStatus__c":"Queued","SBQQ__PaymentTerm__c":"Net - 30","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-03T04:26:23.000+0000","LastViewedDate":"2023-08-03T04:26:23.000+0000","SystemModstamp":"2023-08-03T04:26:23.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:23.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:21.000+0000","TotalAmount":200.00,"OrderNumber":"00001404","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-03T04:26:22.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-03","OpportunityId":"0067e00000OCuXtAAL","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaQ1RAAU","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nRMWAA2","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM1YAL"},"Id":"01uDE00000KVlM1YAL","Name":"REST + Product2 2023-08-29 00:00:00 UTC","Pricebook2Id":"01sDE000008q9JUYAY","Product2Id":"01tDE00000IIarVYAT","UnitPrice":100.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-29T18:33:20.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:20.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:20.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA"},"Id":"800DE000001ls86YAA","AccountId":"001DE000036VQjRYAW","StartDate":"2023-08-29","EndDate":"2025-08-28","BillingAddress":null,"ContractTerm":24,"OwnerId":"005DE00000JiwzhYAB","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000142","CreatedDate":"2023-08-29T18:33:30.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:30.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:30.000+0000","LastViewedDate":"2023-08-29T18:33:31.000+0000","LastReferencedDate":"2023-08-29T18:33:31.000+0000","SBQQ__AmendmentRenewalBehavior__c":"Latest + End Date","SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-28","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"006DE00000wQl9LYAS","SBQQ__Order__c":"801DE0000048GRtYAM","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqFYAV"},"Id":"a0vDE00000K9OqFYAV","IsDeleted":false,"Name":"QL-0000321","CreatedDate":"2023-08-29T18:33:33.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:37.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:37.000+0000","SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":194.68,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":true,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":100.00,"SBQQ__NetPrice__c":194.68,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":100.00,"SBQQ__PartnerPrice__c":194.68,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01uDE00000KVlM1YAL","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIarVYAT","SBQQ__ProrateMultiplier__c":1.94680365296803652968036529680365,"SBQQ__ProratedListPrice__c":194.68,"SBQQ__ProratedPrice__c":194.68,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":194.68,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpgradedSubscription__c":"a1BDE000006dVr62AE","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":194.68,"SBQQ__EffectiveEndDate__c":"2025-08-28","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-18","SBQQ__EffectiveSubscriptionTerm__c":23,"SBQQ__ListTotal__c":194.68,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":194.68,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":194.68,"SBQQ__PackageTotal__c":194.68,"SBQQ__PartnerTotal__c":194.68,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RegularTotal__c":194.68,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9Oq9YAF"},"Id":"a0vDE00000K9Oq9YAF","IsDeleted":false,"Name":"QL-0000319","CreatedDate":"2023-08-29T18:33:26.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:26.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:26.000+0000","SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":200.00,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":100.00,"SBQQ__NetPrice__c":200.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":100.00,"SBQQ__PartnerPrice__c":200.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01uDE00000KVlM1YAL","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIarVYAT","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":200.00,"SBQQ__ProratedPrice__c":200.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":200.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":200.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-29","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":200.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":200.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":200.00,"SBQQ__PackageTotal__c":200.00,"SBQQ__PartnerTotal__c":200.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RegularTotal__c":200.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVr62AE"},"Id":"a1BDE000006dVr62AE","OwnerId":"005DE00000JiwzhYAB","IsDeleted":false,"Name":"SUB-0000077","CreatedDate":"2023-08-29T18:33:30.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:30.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:30.000+0000","SBQQ__Account__c":"001DE000036VQjRYAW","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"800DE000001ls86YAA","SBQQ__CustomerPrice__c":200.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":200.00,"SBQQ__NetPrice__c":200.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"802DE00000Ay2bZYAR","SBQQ__OriginalQuoteLine__c":"a0vDE00000K9Oq9YAF","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIarVYAT","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0vDE00000K9Oq9YAF","SBQQ__RegularPrice__c":200.00,"SBQQ__RenewalPrice__c":100.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1BDE000006dVr62AE","SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-08-29","SBQQ__ContractNumber__c":"00000142","SBQQ__EndDate__c":"2025-08-28","SBQQ__ProductId__c":"01tDE00000IIarV","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RenewalProductId__c":"01tDE00000IIarV","SBQQ__StartDate__c":"2023-08-29","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01tDE00000IIarVYAT"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":194.68,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"802DE00000Ay2bZYAR","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":100.00,"SBQQ__QuoteLine__c":"a0vDE00000K9OqFYAV","SBQQ__ProrateMultiplier__c":1.94680365296803652968036529680365,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"Quantity + Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Activated__c":true,"OrderItemNumber":"0000000133","SystemModstamp":"2023-08-29T18:33:40.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:40.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:39.000+0000","EndDate":"2025-08-28","ServiceDate":"2023-09-18","TotalPrice":194.68,"ListPrice":100.00,"UnitPrice":194.68,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01uDE00000KVlM1YAL","OrderId":"801DE0000048GRyYAM","IsDeleted":false,"Product2Id":"01tDE00000IIarVYAT","Id":"802DE00000Ay2beYAB","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2beYAB","type":"OrderItem"}},{"Contracts":["800DE000001ls86YAA"],"PricebookEntries":[],"Products":["01tDE00000IIarVYAT"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":200.00,"SBQQ__Subscription__c":"a1BDE000006dVr62AE","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":100.00,"SBQQ__QuoteLine__c":"a0vDE00000K9Oq9YAF","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":true,"SBQQ__Contract__c":"800DE000001ls86YAA","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Activated__c":true,"OrderItemNumber":"0000000132","SystemModstamp":"2023-08-29T18:33:30.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:30.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:27.000+0000","EndDate":"2025-08-28","ServiceDate":"2023-08-29","TotalPrice":200.00,"ListPrice":100.00,"UnitPrice":200.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01uDE00000KVlM1YAL","OrderId":"801DE0000048GRtYAM","IsDeleted":false,"Product2Id":"01tDE00000IIarVYAT","Id":"802DE00000Ay2bZYAR","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2bZYAR","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS"},"Id":"006DE00000wQl9LYAS","IsDeleted":false,"AccountId":"001DE000036VQjRYAW","IsPrivate":false,"Name":"REST + Opportunity 2023-08-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:22.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:22.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-08-29T18:33:21.000+0000","LastReferencedDate":"2023-08-29T18:33:21.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0zDE00000LMv0yYAD","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-08-28T07:57:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-28T07:57:21.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-28T07:57:21.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01sDE000008q9JUYAY"],"Opportunities":["006DE00000wQl9QYAS"],"Accounts":["001DE000036VQjRYAW"],"OrderItems":["802DE00000Ay2beYAB"],"Quotes":["a0zDE00000LMv13YAD"],"InitialOrderQuotes":["a0zDE00000LMv0yYAD"],"InitialOrderId":["801DE0000048GRtYAM"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0zDE00000LMv0yYAD","Id":"800DE000001ls86YAA","attributes":{"url":"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA","type":"Contract"}},"SBQQ__AmendedContract__c":"800DE000001ls86YAA","Id":"006DE00000wQl9QYAS","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":194.68,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":24,"SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-29T18:33:40.000+0000","LastViewedDate":"2023-08-29T18:33:40.000+0000","SystemModstamp":"2023-08-29T18:33:40.000+0000","IsDeleted":false,"LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:40.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:38.000+0000","TotalAmount":194.68,"OrderNumber":"00000224","StatusCode":"Activated","ActivatedById":"005DE00000JiwzhYAB","ActivatedDate":"2023-08-29T18:33:40.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-09-18","OpportunityId":"006DE00000wQl9QYAS","Pricebook2Id":"01sDE000008q9JUYAY","AccountId":"001DE000036VQjRYAW","OwnerId":"005DE00000JiwzhYAB","Id":"801DE0000048GRyYAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM","type":"Order"}},{"PriceBooks":["01sDE000008q9JUYAY"],"Opportunities":["006DE00000wQl9LYAS"],"Accounts":["001DE000036VQjRYAW"],"OrderItems":["802DE00000Ay2bZYAR"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":200.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-29T18:33:29.000+0000","LastViewedDate":"2023-08-29T18:33:29.000+0000","SystemModstamp":"2023-08-29T18:33:29.000+0000","IsDeleted":false,"LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:29.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:27.000+0000","TotalAmount":200.00,"OrderNumber":"00000223","StatusCode":"Activated","ActivatedById":"005DE00000JiwzhYAB","ActivatedDate":"2023-08-29T18:33:28.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-29","OpportunityId":"006DE00000wQl9LYAS","Pricebook2Id":"01sDE000008q9JUYAY","AccountId":"001DE000036VQjRYAW","OwnerId":"005DE00000JiwzhYAB","Id":"801DE0000048GRtYAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"HasOptedOutOfFax","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"DoNotCall","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ContractId","sobject_type":"Opportunity","error_message":"Field @@ -1793,10 +1798,10 @@ http_interactions: Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingAddress","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Name","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:39 GMT + recorded_at: Tue, 29 Aug 2023 18:33:42 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%278017e000000nRMgAAM%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%27801DE0000048GRyYAM%27%0A body: encoding: US-ASCII string: '' @@ -1815,12 +1820,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:39 GMT + - Tue, 29 Aug 2023 18:33:42 GMT Set-Cookie: - - BrowserId=8RCPzTG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:39 + - BrowserId=lFPtBUaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1833,7 +1838,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11879/5000000 + - api-usage=6560/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1842,11 +1847,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM"},"Type":"Amendment","OpportunityId":"0067e00000OCuY1AAL","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL"},"SBQQ__AmendedContract__c":"8007e000001iCPUAA2"}}]}' - recorded_at: Thu, 03 Aug 2023 04:26:39 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM"},"Type":"Amendment","OpportunityId":"006DE00000wQl9QYAS","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS"},"SBQQ__AmendedContract__c":"800DE000001ls86YAA"}}]}' + recorded_at: Tue, 29 Aug 2023 18:33:42 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20OpportunityId,%20Opportunity.SBQQ__AmendedContract__c,%0A%20%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__r.SBQQ__Quote__c%0AFROM%20Order%0AWHERE%20Id%20=%20%278017e000000nRMgAAM%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20OpportunityId,%20Opportunity.SBQQ__AmendedContract__c,%0A%20%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__r.SBQQ__Quote__c%0AFROM%20Order%0AWHERE%20Id%20=%20%27801DE0000048GRyYAM%27%0A body: encoding: US-ASCII string: '' @@ -1865,12 +1870,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:40 GMT + - Tue, 29 Aug 2023 18:33:42 GMT Set-Cookie: - - BrowserId=8UtPMDG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:40 + - BrowserId=lGu6uUaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1883,7 +1888,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11879/5000000 + - api-usage=6564/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1892,11 +1897,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM"},"OpportunityId":"0067e00000OCuY1AAL","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL"},"SBQQ__AmendedContract__c":"8007e000001iCPUAA2","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2"},"SBQQ__Quote__c":"a0z7e00000BDKjkAAH"}}}]}' - recorded_at: Thu, 03 Aug 2023 04:26:40 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM"},"OpportunityId":"006DE00000wQl9QYAS","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS"},"SBQQ__AmendedContract__c":"800DE000001ls86YAA","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA"},"SBQQ__Quote__c":"a0zDE00000LMv0yYAD"}}}]}' + recorded_at: Tue, 29 Aug 2023 18:33:42 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20Order%0AWHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDKjkAAH%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20Order%0AWHERE%20SBQQ__Quote__c%20=%20%27a0zDE00000LMv0yYAD%27%0A body: encoding: US-ASCII string: '' @@ -1915,12 +1920,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:40 GMT + - Tue, 29 Aug 2023 18:33:42 GMT Set-Cookie: - - BrowserId=8YZcajG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:40 + - BrowserId=lINiAUaaEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1933,7 +1938,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11855/5000000 + - api-usage=6561/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1942,11 +1947,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2"},"Id":"8017e000000nRMWAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:40 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM"},"Id":"801DE0000048GRtYAM"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:42 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20FIELDS(ALL)%20FROM%20Order%0AWHERE%20Opportunity.SBQQ__AmendedContract__c%20=%20%278007e000001iCPUAA2%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20FIELDS(ALL)%20FROM%20Order%0AWHERE%20Opportunity.SBQQ__AmendedContract__c%20=%20%27800DE000001ls86YAA%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A body: encoding: US-ASCII string: '' @@ -1965,12 +1970,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:40 GMT + - Tue, 29 Aug 2023 18:33:42 GMT Set-Cookie: - - BrowserId=8bnvCjG1Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:40 + - BrowserId=lKKpzkaaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1983,7 +1988,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11858/5000000 + - api-usage=6564/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1992,15 +1997,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM"},"Id":"8017e000000nRMgAAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuY1AAL","EffectiveDate":"2023-08-23","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T04:26:36.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001405","TotalAmount":194.68,"CreatedDate":"2023-08-03T04:26:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:36.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:26:36.000+0000","LastViewedDate":"2023-08-03T04:26:37.000+0000","LastReferencedDate":"2023-08-03T04:26:37.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:40 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM"},"Id":"801DE0000048GRyYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9QYAS","EffectiveDate":"2023-09-18","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:33:40.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000224","TotalAmount":194.68,"CreatedDate":"2023-08-29T18:33:38.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:40.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:33:40.000+0000","LastViewedDate":"2023-08-29T18:33:40.000+0000","LastReferencedDate":"2023-08-29T18:33:40.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:42 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nRMgAAM"]}' + string: '{"order_ids":["801DE0000048GRyYAM"]}' headers: User-Agent: - Faraday v2.4.0 @@ -2018,12 +2024,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:41 GMT + - Tue, 29 Aug 2023 18:33:42 GMT Set-Cookie: - - BrowserId=8fFS_zG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:41 + - BrowserId=lL68yUaaEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2043,38 +2049,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL"},"Id":"0067e00000OCuY1AAL","IsDeleted":false,"AccountId":"0017e00001iaQ1RAAU","IsPrivate":false,"Name":"Amendment - for contract #00000366","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-03","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:27.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-03T04:26:27.000+0000","LastReferencedDate":"2023-08-03T04:26:27.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCPUAA2","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKjpAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU"},"Id":"0017e00001iaQ1RAAU","IsDeleted":false,"Name":"REST - Account 2023-08-03 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaQ1RAAU","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:12.000+0000","LastViewedDate":"2023-08-03T04:26:12.000+0000","LastReferencedDate":"2023-08-03T04:26:12.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["0017e00001iaQ1RAAU"],"Opportunities":["0067e00000OCuY1AAL"],"SBQQ__RegularAmount__c":194.68,"SBQQ__NetAmount__c":194.68,"SBQQ__ListAmount__c":194.68,"SBQQ__CustomerAmount__c":194.68,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-01","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":23,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-08-23","SBQQ__ShippingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__RenewalTerm__c":24,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0067e00000OCuY1AAL","SBQQ__MasterContract__c":"8007e000001iCPUAA2","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-03T04:26:34.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-03T04:26:28.000+0000","SBQQ__EndDate__c":"2025-08-02","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS"},"Id":"006DE00000wQl9QYAS","IsDeleted":false,"AccountId":"001DE000036VQjRYAW","IsPrivate":false,"Name":"Amendment + for contract #00000142","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:31.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:31.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:31.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-08-29T18:33:31.000+0000","LastReferencedDate":"2023-08-29T18:33:31.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"800DE000001ls86YAA","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0zDE00000LMv13YAD","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW"},"Id":"001DE000036VQjRYAW","IsDeleted":false,"Name":"REST + Account 2023-08-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/001DE000036VQjRYAW","OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:21.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:21.000+0000","LastViewedDate":"2023-08-29T18:33:21.000+0000","LastReferencedDate":"2023-08-29T18:33:21.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["001DE000036VQjRYAW"],"Opportunities":["006DE00000wQl9QYAS"],"SBQQ__RegularAmount__c":194.68,"SBQQ__NetAmount__c":194.68,"SBQQ__ListAmount__c":194.68,"SBQQ__CustomerAmount__c":194.68,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-09-28","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":1,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":23,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-09-18","SBQQ__ShippingName__c":"REST + Account 2023-08-29 00:00:00 UTC","SBQQ__SalesRep__c":"005DE00000JiwzhYAB","SBQQ__RenewalTerm__c":24,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01sDE000008q9JUYAY","SBQQ__PriceBook__c":"01sDE000008q9JUYAY","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"006DE00000wQl9QYAS","SBQQ__MasterContract__c":"800DE000001ls86YAA","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-29T18:33:38.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-29T18:33:33.000+0000","SBQQ__EndDate__c":"2025-08-28","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__Account__c":"0017e00001iaQ1RAAU","LastReferencedDate":"2023-08-03T04:26:34.000+0000","LastViewedDate":"2023-08-03T04:26:34.000+0000","SystemModstamp":"2023-08-03T04:26:34.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:34.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:27.000+0000","Name":"Q-01323","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKjpAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjpAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS"},"Id":"01t7e000009AsuUAAS","Name":"REST - Product2 2023-08-03 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-03T04:26:09.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:11.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-08-29 00:00:00 UTC","SBQQ__Account__c":"001DE000036VQjRYAW","LastReferencedDate":"2023-08-29T18:33:38.000+0000","LastViewedDate":"2023-08-29T18:33:38.000+0000","SystemModstamp":"2023-08-29T18:33:38.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:38.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:31.000+0000","Name":"Q-00125","IsDeleted":false,"OwnerId":"005DE00000JiwzhYAB","Id":"a0zDE00000LMv13YAD","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv13YAD","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT"},"Id":"01tDE00000IIarVYAT","Name":"REST + Product2 2023-08-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-08-29T18:33:20.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:20.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:20.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One per quote line","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isk4iAAB"},"Id":"01u7e00000Isk4iAAB","Name":"REST - Product2 2023-08-03 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AsuUAAS","UnitPrice":100.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-03T04:26:11.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:11.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:11.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2"},"Id":"8007e000001iCPUAA2","AccountId":"0017e00001iaQ1RAAU","StartDate":"2023-08-03","EndDate":"2025-08-02","BillingAddress":null,"ContractTerm":24,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000366","CreatedDate":"2023-08-03T04:26:24.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:24.000+0000","LastViewedDate":"2023-08-03T04:26:26.000+0000","LastReferencedDate":"2023-08-03T04:26:26.000+0000","SBQQ__AmendmentRenewalBehavior__c":"Latest - End Date","SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-02","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0067e00000OCuXtAAL","SBQQ__Order__c":"8017e000000nRMWAA2","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYDCAA2"},"Id":"a0v7e000008xYDCAA2","IsDeleted":false,"Name":"QL-0002902","CreatedDate":"2023-08-03T04:26:28.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:33.000+0000","SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":194.68,"SBQQ__Description__c":"A - great description","SBQQ__Existing__c":true,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":100.00,"SBQQ__NetPrice__c":194.68,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":100.00,"SBQQ__PartnerPrice__c":194.68,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isk4iAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AsuUAAS","SBQQ__ProrateMultiplier__c":1.94680365296803652968036529680365,"SBQQ__ProratedListPrice__c":194.68,"SBQQ__ProratedPrice__c":194.68,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":194.68,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpgradedSubscription__c":"a1B7e00000EX5CpEAL","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":194.68,"SBQQ__EffectiveEndDate__c":"2025-08-02","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-23","SBQQ__EffectiveSubscriptionTerm__c":23,"SBQQ__ListTotal__c":194.68,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":194.68,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":194.68,"SBQQ__PackageTotal__c":194.68,"SBQQ__PartnerTotal__c":194.68,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RegularTotal__c":194.68,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xYD6AAM"},"Id":"a0v7e000008xYD6AAM","IsDeleted":false,"Name":"QL-0002900","CreatedDate":"2023-08-03T04:26:19.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:19.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:19.000+0000","SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":200.00,"SBQQ__Description__c":"A - great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":100.00,"SBQQ__NetPrice__c":200.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":100.00,"SBQQ__PartnerPrice__c":200.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isk4iAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AsuUAAS","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":200.00,"SBQQ__ProratedPrice__c":200.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":200.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":200.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-03","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":200.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":200.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":200.00,"SBQQ__PackageTotal__c":200.00,"SBQQ__PartnerTotal__c":200.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RegularTotal__c":200.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX5CpEAL"},"Id":"a1B7e00000EX5CpEAL","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000338","CreatedDate":"2023-08-03T04:26:24.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:24.000+0000","SBQQ__Account__c":"0017e00001iaQ1RAAU","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCPUAA2","SBQQ__CustomerPrice__c":200.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":200.00,"SBQQ__NetPrice__c":200.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8027e000001bQsEAAU","SBQQ__OriginalQuoteLine__c":"a0v7e000008xYD6AAM","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AsuUAAS","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xYD6AAM","SBQQ__RegularPrice__c":200.00,"SBQQ__RenewalPrice__c":100.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX5CpEAL","SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-03","SBQQ__ContractNumber__c":"00000366","SBQQ__EndDate__c":"2025-08-02","SBQQ__ProductId__c":"01t7e000009AsuU","SBQQ__ProductName__c":"REST - Product2 2023-08-03 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009AsuU","SBQQ__StartDate__c":"2023-08-03","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009AsuUAAS"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":194.68,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8027e000001bQsEAAU","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":100.00,"SBQQ__QuoteLine__c":"a0v7e000008xYDCAA2","SBQQ__ProrateMultiplier__c":1.94680365296803652968036529680365,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"Quantity - Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Activated__c":true,"OrderItemNumber":"0000001431","SystemModstamp":"2023-08-03T04:26:36.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:36.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:35.000+0000","EndDate":"2025-08-02","ServiceDate":"2023-08-23","TotalPrice":194.68,"ListPrice":100.00,"UnitPrice":194.68,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isk4iAAB","OrderId":"8017e000000nRMgAAM","IsDeleted":false,"Product2Id":"01t7e000009AsuUAAS","Id":"8027e000001bQsOAAU","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQsOAAU","type":"OrderItem"}},{"Contracts":["8007e000001iCPUAA2"],"PricebookEntries":[],"Products":["01t7e000009AsuUAAS"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":200.00,"SBQQ__Subscription__c":"a1B7e00000EX5CpEAL","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":100.00,"SBQQ__QuoteLine__c":"a0v7e000008xYD6AAM","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":true,"SBQQ__Contract__c":"8007e000001iCPUAA2","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Activated__c":true,"OrderItemNumber":"0000001430","SystemModstamp":"2023-08-03T04:26:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:24.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:21.000+0000","EndDate":"2025-08-02","ServiceDate":"2023-08-03","TotalPrice":200.00,"ListPrice":100.00,"UnitPrice":200.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isk4iAAB","OrderId":"8017e000000nRMWAA2","IsDeleted":false,"Product2Id":"01t7e000009AsuUAAS","Id":"8027e000001bQsEAAU","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQsEAAU","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuXtAAL"},"Id":"0067e00000OCuXtAAL","IsDeleted":false,"AccountId":"0017e00001iaQ1RAAU","IsPrivate":false,"Name":"REST - Opportunity 2023-08-03 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-03","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:14.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:14.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-03T04:26:12.000+0000","LastReferencedDate":"2023-08-03T04:26:12.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKjkAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000OCuY1AAL"],"Accounts":["0017e00001iaQ1RAAU"],"OrderItems":["8027e000001bQsOAAU"],"Quotes":["a0z7e00000BDKjpAAH"],"InitialOrderQuotes":["a0z7e00000BDKjkAAH"],"InitialOrderId":["8017e000000nRMWAA2"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKjkAAH","Id":"8007e000001iCPUAA2","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCPUAA2","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCPUAA2","Id":"0067e00000OCuY1AAL","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000OCuY1AAL","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":194.68,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":24,"SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__PriceCalcStatus__c":"Queued","SBQQ__PaymentTerm__c":"Net - 30","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-03T04:26:37.000+0000","LastViewedDate":"2023-08-03T04:26:37.000+0000","SystemModstamp":"2023-08-03T04:26:36.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:36.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:35.000+0000","TotalAmount":194.68,"OrderNumber":"00001405","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-03T04:26:36.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-23","OpportunityId":"0067e00000OCuY1AAL","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaQ1RAAU","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nRMgAAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000OCuXtAAL"],"Accounts":["0017e00001iaQ1RAAU"],"OrderItems":["8027e000001bQsEAAU"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":200.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__PriceCalcStatus__c":"Not + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM1YAL"},"Id":"01uDE00000KVlM1YAL","Name":"REST + Product2 2023-08-29 00:00:00 UTC","Pricebook2Id":"01sDE000008q9JUYAY","Product2Id":"01tDE00000IIarVYAT","UnitPrice":100.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-29T18:33:20.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:20.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:20.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA"},"Id":"800DE000001ls86YAA","AccountId":"001DE000036VQjRYAW","StartDate":"2023-08-29","EndDate":"2025-08-28","BillingAddress":null,"ContractTerm":24,"OwnerId":"005DE00000JiwzhYAB","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000142","CreatedDate":"2023-08-29T18:33:30.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:30.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:30.000+0000","LastViewedDate":"2023-08-29T18:33:31.000+0000","LastReferencedDate":"2023-08-29T18:33:31.000+0000","SBQQ__AmendmentRenewalBehavior__c":"Latest + End Date","SBQQ__DefaultRenewalContactRoles__c":true,"SBQQ__DefaultRenewalPartners__c":true,"SBQQ__DisableAmendmentCoTerm__c":false,"SBQQ__Evergreen__c":false,"SBQQ__ExpirationDate__c":"2025-08-28","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"006DE00000wQl9LYAS","SBQQ__Order__c":"801DE0000048GRtYAM","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":24,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9OqFYAV"},"Id":"a0vDE00000K9OqFYAV","IsDeleted":false,"Name":"QL-0000321","CreatedDate":"2023-08-29T18:33:33.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:37.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:37.000+0000","SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":194.68,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":true,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":100.00,"SBQQ__NetPrice__c":194.68,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":100.00,"SBQQ__PartnerPrice__c":194.68,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01uDE00000KVlM1YAL","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIarVYAT","SBQQ__ProrateMultiplier__c":1.94680365296803652968036529680365,"SBQQ__ProratedListPrice__c":194.68,"SBQQ__ProratedPrice__c":194.68,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":194.68,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpgradedSubscription__c":"a1BDE000006dVr62AE","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":194.68,"SBQQ__EffectiveEndDate__c":"2025-08-28","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-18","SBQQ__EffectiveSubscriptionTerm__c":23,"SBQQ__ListTotal__c":194.68,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":194.68,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":194.68,"SBQQ__PackageTotal__c":194.68,"SBQQ__PartnerTotal__c":194.68,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RegularTotal__c":194.68,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0vDE00000K9Oq9YAF"},"Id":"a0vDE00000K9Oq9YAF","IsDeleted":false,"Name":"QL-0000319","CreatedDate":"2023-08-29T18:33:26.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:26.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:26.000+0000","SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":200.00,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":100.00,"SBQQ__NetPrice__c":200.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":100.00,"SBQQ__PartnerPrice__c":200.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01uDE00000KVlM1YAL","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIarVYAT","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProratedListPrice__c":200.00,"SBQQ__ProratedPrice__c":200.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":200.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":200.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-29","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":200.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":200.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":200.00,"SBQQ__PackageTotal__c":200.00,"SBQQ__PartnerTotal__c":200.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RegularTotal__c":200.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1BDE000006dVr62AE"},"Id":"a1BDE000006dVr62AE","OwnerId":"005DE00000JiwzhYAB","IsDeleted":false,"Name":"SUB-0000077","CreatedDate":"2023-08-29T18:33:30.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:30.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:30.000+0000","SBQQ__Account__c":"001DE000036VQjRYAW","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"800DE000001ls86YAA","SBQQ__CustomerPrice__c":200.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":200.00,"SBQQ__NetPrice__c":200.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"802DE00000Ay2bZYAR","SBQQ__OriginalQuoteLine__c":"a0vDE00000K9Oq9YAF","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01tDE00000IIarVYAT","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0vDE00000K9Oq9YAF","SBQQ__RegularPrice__c":200.00,"SBQQ__RenewalPrice__c":100.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1BDE000006dVr62AE","SBQQ__SpecialPrice__c":100.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-08-29","SBQQ__ContractNumber__c":"00000142","SBQQ__EndDate__c":"2025-08-28","SBQQ__ProductId__c":"01tDE00000IIarV","SBQQ__ProductName__c":"REST + Product2 2023-08-29 00:00:00 UTC","SBQQ__RenewalProductId__c":"01tDE00000IIarV","SBQQ__StartDate__c":"2023-08-29","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01tDE00000IIarVYAT"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":194.68,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"802DE00000Ay2bZYAR","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":100.00,"SBQQ__QuoteLine__c":"a0vDE00000K9OqFYAV","SBQQ__ProrateMultiplier__c":1.94680365296803652968036529680365,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"Quantity + Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Activated__c":true,"OrderItemNumber":"0000000133","SystemModstamp":"2023-08-29T18:33:40.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:40.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:39.000+0000","EndDate":"2025-08-28","ServiceDate":"2023-09-18","TotalPrice":194.68,"ListPrice":100.00,"UnitPrice":194.68,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01uDE00000KVlM1YAL","OrderId":"801DE0000048GRyYAM","IsDeleted":false,"Product2Id":"01tDE00000IIarVYAT","Id":"802DE00000Ay2beYAB","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2beYAB","type":"OrderItem"}},{"Contracts":["800DE000001ls86YAA"],"PricebookEntries":[],"Products":["01tDE00000IIarVYAT"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":200.00,"SBQQ__Subscription__c":"a1BDE000006dVr62AE","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":100.00,"SBQQ__QuoteLine__c":"a0vDE00000K9Oq9YAF","SBQQ__ProrateMultiplier__c":2.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":true,"SBQQ__Contract__c":"800DE000001ls86YAA","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Semiannual","SBQQ__Activated__c":true,"OrderItemNumber":"0000000132","SystemModstamp":"2023-08-29T18:33:30.000+0000","LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:30.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:27.000+0000","EndDate":"2025-08-28","ServiceDate":"2023-08-29","TotalPrice":200.00,"ListPrice":100.00,"UnitPrice":200.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01uDE00000KVlM1YAL","OrderId":"801DE0000048GRtYAM","IsDeleted":false,"Product2Id":"01tDE00000IIarVYAT","Id":"802DE00000Ay2bZYAR","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2bZYAR","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9LYAS"},"Id":"006DE00000wQl9LYAS","IsDeleted":false,"AccountId":"001DE000036VQjRYAW","IsPrivate":false,"Name":"REST + Opportunity 2023-08-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:22.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:22.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-08-29T18:33:21.000+0000","LastReferencedDate":"2023-08-29T18:33:21.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0zDE00000LMv0yYAD","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01sDE000008q9JUYAY"},"Id":"01sDE000008q9JUYAY","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-08-28T07:57:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-28T07:57:21.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-28T07:57:21.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01sDE000008q9JUYAY"],"Opportunities":["006DE00000wQl9QYAS"],"Accounts":["001DE000036VQjRYAW"],"OrderItems":["802DE00000Ay2beYAB"],"Quotes":["a0zDE00000LMv13YAD"],"InitialOrderQuotes":["a0zDE00000LMv0yYAD"],"InitialOrderId":["801DE0000048GRtYAM"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0zDE00000LMv0yYAD","Id":"800DE000001ls86YAA","attributes":{"url":"/services/data/v58.0/sobjects/Contract/800DE000001ls86YAA","type":"Contract"}},"SBQQ__AmendedContract__c":"800DE000001ls86YAA","Id":"006DE00000wQl9QYAS","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/006DE00000wQl9QYAS","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":194.68,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":24,"SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-03T04:26:23.000+0000","LastViewedDate":"2023-08-03T04:26:23.000+0000","SystemModstamp":"2023-08-03T04:26:38.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:38.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:21.000+0000","TotalAmount":200.00,"OrderNumber":"00001404","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-03T04:26:22.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-03","OpportunityId":"0067e00000OCuXtAAL","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaQ1RAAU","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nRMWAA2","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-29T18:33:40.000+0000","LastViewedDate":"2023-08-29T18:33:40.000+0000","SystemModstamp":"2023-08-29T18:33:40.000+0000","IsDeleted":false,"LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:40.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:38.000+0000","TotalAmount":194.68,"OrderNumber":"00000224","StatusCode":"Activated","ActivatedById":"005DE00000JiwzhYAB","ActivatedDate":"2023-08-29T18:33:40.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-09-18","OpportunityId":"006DE00000wQl9QYAS","Pricebook2Id":"01sDE000008q9JUYAY","AccountId":"001DE000036VQjRYAW","OwnerId":"005DE00000JiwzhYAB","Id":"801DE0000048GRyYAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM","type":"Order"}},{"PriceBooks":["01sDE000008q9JUYAY"],"Opportunities":["006DE00000wQl9LYAS"],"Accounts":["001DE000036VQjRYAW"],"OrderItems":["802DE00000Ay2bZYAR"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":200.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-29T18:33:29.000+0000","LastViewedDate":"2023-08-29T18:33:29.000+0000","SystemModstamp":"2023-08-29T18:33:29.000+0000","IsDeleted":false,"LastModifiedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:29.000+0000","CreatedById":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:27.000+0000","TotalAmount":200.00,"OrderNumber":"00000223","StatusCode":"Activated","ActivatedById":"005DE00000JiwzhYAB","ActivatedDate":"2023-08-29T18:33:28.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-29","OpportunityId":"006DE00000wQl9LYAS","Pricebook2Id":"01sDE000008q9JUYAY","AccountId":"001DE000036VQjRYAW","OwnerId":"005DE00000JiwzhYAB","Id":"801DE0000048GRtYAM","attributes":{"url":"/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"HasOptedOutOfFax","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"DoNotCall","sobject_type":"Contact","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ContractId","sobject_type":"Opportunity","error_message":"Field @@ -2091,10 +2098,10 @@ http_interactions: Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingAddress","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Name","sobject_type":"Contract","error_message":"Field Not Accessible","error_type":"FieldNotAccessible"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:42 GMT + recorded_at: Tue, 29 Aug 2023 18:33:44 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278017e000000nRMWAA2%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%27801DE0000048GRtYAM%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -2113,12 +2120,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:42 GMT + - Tue, 29 Aug 2023 18:33:45 GMT Set-Cookie: - - BrowserId=8uQ-PTG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:42 + - BrowserId=lf-hG0aaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2131,7 +2138,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11858/5000000 + - api-usage=6563/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2140,14 +2147,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2"},"Id":"8017e000000nRMWAA2"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:43 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM"},"Id":"801DE0000048GRtYAM"}]}' + recorded_at: Tue, 29 Aug 2023 18:33:44 GMT - request: method: post uri: https://api.stripe.com/v1/test_helpers/test_clocks body: encoding: UTF-8 - string: frozen_time=1691036803 + string: frozen_time=1693334025 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2156,13 +2163,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - bedff1af-3578-4bca-8589-ee915efb6b82 + - 90a4a619-9550-4ad8-bf2b-1e26b90a401e Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -2177,7 +2184,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:43 GMT + - Tue, 29 Aug 2023 18:33:45 GMT Content-Type: - application/json Content-Length: @@ -2196,20 +2203,28 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' Idempotency-Key: - - bedff1af-3578-4bca-8589-ee915efb6b82 + - 90a4a619-9550-4ad8-bf2b-1e26b90a401e Original-Request: - - req_nx0j5QNGSo53Vf + - req_Lpyk7aYg05N6T0 + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_nx0j5QNGSo53Vf + - req_Lpyk7aYg05N6T0 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '18.000000000000004' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -2218,22 +2233,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691036803, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693334025, "livemode": false, "name": null, "status": "ready" } - recorded_at: Thu, 03 Aug 2023 04:26:43 GMT + recorded_at: Tue, 29 Aug 2023 18:33:45 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-03+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iaQ1RAAU&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iaQ1RAAU&test_clock=clock_1Nat7XIsgf92XbAODF4TMJrW + string: name=REST+Account++2023-08-29+00%3A00%3A00+UTC&metadata[salesforce_account_id]=001DE000036VQjRYAW&metadata[salesforce_account_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F001DE000036VQjRYAW&test_clock=clock_1NkWjVIsgf92XbAOgV49UfBe headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2242,15 +2257,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_nx0j5QNGSo53Vf","request_duration_ms":187}}' + - '{"last_request_metrics":{"request_id":"req_Lpyk7aYg05N6T0","request_duration_ms":278}}' Idempotency-Key: - - fa53287d-e959-4fd7-853c-86893df4700c + - f7ce899c-ce39-480d-a0d9-fa3ef6caeb1a Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -2265,11 +2280,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:43 GMT + - Tue, 29 Aug 2023 18:33:45 GMT Content-Type: - application/json Content-Length: - - '876' + - '877' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -2285,19 +2300,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - fa53287d-e959-4fd7-853c-86893df4700c + - f7ce899c-ce39-480d-a0d9-fa3ef6caeb1a Original-Request: - - req_pMBixpzLLctYEo + - req_rQZOEug2Gwo3JH Request-Id: - - req_pMBixpzLLctYEo + - req_rQZOEug2Gwo3JH Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '101.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -2306,11 +2319,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONeQtpBzdKza9Q", + "id": "cus_OXbxbwOxZGraDf", "object": "customer", "address": null, "balance": 0, - "created": 1691036803, + "created": 1693334025, "currency": null, "default_currency": null, "default_source": null, @@ -2318,7 +2331,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "8D15DF9B", + "invoice_prefix": "1540E8EA", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -2327,24 +2340,24 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaQ1RAAU", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaQ1RAAU" + "salesforce_account_id": "001DE000036VQjRYAW", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjRYAW" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", + "name": "REST Account 2023-08-29 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], "shipping": null, "tax_exempt": "none", - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW" + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe" } - recorded_at: Thu, 03 Aug 2023 04:26:43 GMT + recorded_at: Tue, 29 Aug 2023 18:33:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ONeQtpBzdKza9Q"}' + string: '{"Stripe_ID__c":"cus_OXbxbwOxZGraDf"}' headers: User-Agent: - Faraday v2.4.0 @@ -2362,12 +2375,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:44 GMT + - Tue, 29 Aug 2023 18:33:45 GMT Set-Cookie: - - BrowserId=85J_sjG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:44 + - BrowserId=loWaPEaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2382,17 +2395,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11859/5000000 + - api-usage=6564/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:44 GMT + recorded_at: Tue, 29 Aug 2023 18:33:45 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-03+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AsuUAAS&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AsuUAAS + string: name=REST+Product2++2023-08-29+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01tDE00000IIarVYAT&metadata[salesforce_product2_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F01tDE00000IIarVYAT headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2401,15 +2414,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_pMBixpzLLctYEo","request_duration_ms":280}}' + - '{"last_request_metrics":{"request_id":"req_rQZOEug2Gwo3JH","request_duration_ms":375}}' Idempotency-Key: - - 37c3e964-662c-4c6d-a9da-731a17901fb1 + - ca82d24c-16fd-4b1f-852b-87104f866794 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -2424,11 +2437,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:44 GMT + - Tue, 29 Aug 2023 18:33:46 GMT Content-Type: - application/json Content-Length: - - '748' + - '749' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -2444,19 +2457,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 37c3e964-662c-4c6d-a9da-731a17901fb1 + - ca82d24c-16fd-4b1f-852b-87104f866794 Original-Request: - - req_ghk8Ro5I4LzFGO + - req_3STVMbebDEr3zq Request-Id: - - req_ghk8Ro5I4LzFGO + - req_3STVMbebDEr3zq Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '41.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -2465,39 +2476,39 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONeQax9jJ1hT1Q", + "id": "prod_OXbxSDZ1lrlTIx", "object": "product", "active": true, "attributes": [], - "created": 1691036804, + "created": 1693334026, "default_price": null, "description": "A great description", "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AsuUAAS", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AsuUAAS" + "salesforce_product2_id": "01tDE00000IIarVYAT", + "salesforce_product2_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01tDE00000IIarVYAT" }, - "name": "REST Product2 2023-08-03 00:00:00 UTC", + "name": "REST Product2 2023-08-29 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-03-000000-utc-22", + "sku": "rest-product2--2023-08-29-000000-utc-30", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691036804, + "updated": 1693334026, "url": null } - recorded_at: Thu, 03 Aug 2023 04:26:44 GMT + recorded_at: Tue, 29 Aug 2023 18:33:46 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ONeQax9jJ1hT1Q"}' + string: '{"Stripe_ID__c":"prod_OXbxSDZ1lrlTIx"}' headers: User-Agent: - Faraday v2.4.0 @@ -2515,12 +2526,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:44 GMT + - Tue, 29 Aug 2023 18:33:46 GMT Set-Cookie: - - BrowserId=8_6u1TG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:44 + - BrowserId=ltoi0EaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2535,14 +2546,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11856/5000000 + - api-usage=6568/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:44 GMT + recorded_at: Tue, 29 Aug 2023 18:33:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009AsuUAAS%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIarVYAT%27%0A body: encoding: US-ASCII string: '' @@ -2561,12 +2572,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:45 GMT + - Tue, 29 Aug 2023 18:33:46 GMT Set-Cookie: - - BrowserId=9E3gbTG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:45 + - BrowserId=lwPKiEaaEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2579,7 +2590,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11871/5000000 + - api-usage=6565/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2589,10 +2600,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:45 GMT + recorded_at: Tue, 29 Aug 2023 18:33:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009AsuUAAS%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIarVYAT%27%0A body: encoding: US-ASCII string: '' @@ -2611,12 +2622,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:45 GMT + - Tue, 29 Aug 2023 18:33:46 GMT Set-Cookie: - - BrowserId=9IT2jjG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:45 + - BrowserId=lxmcZUaaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2629,7 +2640,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11881/5000000 + - api-usage=6568/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2639,10 +2650,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:45 GMT + recorded_at: Tue, 29 Aug 2023 18:33:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT body: encoding: US-ASCII string: '' @@ -2661,12 +2672,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:45 GMT + - Tue, 29 Aug 2023 18:33:47 GMT Set-Cookie: - - BrowserId=9LnovTG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:45 + - BrowserId=ly-V5EaaEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2679,9 +2690,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11872/5000000 + - api-usage=6562/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:26:44 GMT + - Tue, 29 Aug 2023 18:33:46 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2690,15 +2701,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AsuUAAS"},"Id":"01t7e000009AsuUAAS","Name":"REST - Product2 2023-08-03 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-03T04:26:09.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:44.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:44.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01tDE00000IIarVYAT"},"Id":"01tDE00000IIarVYAT","Name":"REST + Product2 2023-08-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-08-29T18:33:20.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:46.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:46.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One per quote line","SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__BillingType__c":null,"SBQQ__BlockPricingField__c":"Quantity","SBQQ__ChargeType__c":null,"SBQQ__Component__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationFieldSet__c":null,"SBQQ__ConfigurationFields__c":null,"SBQQ__ConfigurationFormTitle__c":null,"SBQQ__ConfigurationType__c":null,"SBQQ__ConfigurationValidator__c":null,"SBQQ__ConfiguredCodePattern__c":null,"SBQQ__ConfiguredDescriptionPattern__c":null,"SBQQ__CostEditable__c":false,"SBQQ__CostSchedule__c":null,"SBQQ__CustomConfigurationPage__c":null,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__CustomerCommunityAvailability__c":null,"SBQQ__DefaultPricingTable__c":null,"SBQQ__DefaultQuantity__c":1.0,"SBQQ__DescriptionLocked__c":false,"SBQQ__DiscountCategory__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DynamicPricingConstraint__c":null,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionLayout__c":null,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingGuidance__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductPictureID__c":null,"SBQQ__QuantityEditable__c":true,"SBQQ__QuantityScale__c":null,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__RenewalProduct__c":null,"SBQQ__SortOrder__c":null,"SBQQ__Specifications__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_ONeQax9jJ1hT1Q","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONeQax9jJ1hT1Q"}' - recorded_at: Thu, 03 Aug 2023 04:26:46 GMT + Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_OXbxSDZ1lrlTIx","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OXbxSDZ1lrlTIx"}' + recorded_at: Tue, 29 Aug 2023 18:33:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQsEAAU%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2bZYAR%27%0A body: encoding: US-ASCII string: '' @@ -2717,12 +2728,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:46 GMT + - Tue, 29 Aug 2023 18:33:47 GMT Set-Cookie: - - BrowserId=9PVEnDG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:46 + - BrowserId=l0n7okaaEe6PuwPp-C6AYw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2735,7 +2746,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11882/5000000 + - api-usage=6565/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2745,10 +2756,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:46 GMT + recorded_at: Tue, 29 Aug 2023 18:33:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQsEAAU%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2bZYAR%27%0A body: encoding: US-ASCII string: '' @@ -2767,12 +2778,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:46 GMT + - Tue, 29 Aug 2023 18:33:47 GMT Set-Cookie: - - BrowserId=9SmarDG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:46 + - BrowserId=l2QTNEaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2785,7 +2796,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11860/5000000 + - api-usage=6567/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2795,10 +2806,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:46 GMT + recorded_at: Tue, 29 Aug 2023 18:33:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -2817,12 +2828,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:47 GMT + - Tue, 29 Aug 2023 18:33:47 GMT Set-Cookie: - - BrowserId=9V4XnDG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:47 + - BrowserId=l3x9MUaaEe6U0fN8rRY3OQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2835,11 +2846,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11883/5000000 + - api-usage=6563/5000000 Etag: - - '"6de44be0--gzip"' + - '"a39f33c5--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 28 Aug 2023 14:57:37 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3142,7 +3153,8 @@ http_interactions: Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content - Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract @@ -3158,7 +3170,9 @@ http_interactions: Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract - Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -3446,9 +3460,18 @@ http_interactions: Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching - Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile - Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note @@ -3500,7 +3523,7 @@ http_interactions: Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package - License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party @@ -4196,10 +4219,10 @@ http_interactions: Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' - recorded_at: Thu, 03 Aug 2023 04:26:47 GMT + recorded_at: Tue, 29 Aug 2023 18:33:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD body: encoding: US-ASCII string: '' @@ -4218,12 +4241,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:47 GMT + - Tue, 29 Aug 2023 18:33:48 GMT Set-Cookie: - - BrowserId=9ejzLDG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:47 + - BrowserId=l9qi40aaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:33:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:33:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4236,9 +4259,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11861/5000000 + - api-usage=6568/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:26:20 GMT + - Tue, 29 Aug 2023 18:33:27 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4247,15 +4270,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKjkAAH"},"Id":"a0z7e00000BDKjkAAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-01322","CreatedDate":"2023-08-03T04:26:14.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:20.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:20.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-03T04:26:20.000+0000","LastReferencedDate":"2023-08-03T04:26:20.000+0000","SBQQ__Account__c":"0017e00001iaQ1RAAU","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__BillingPostalCode__c":null,"SBQQ__BillingState__c":null,"SBQQ__BillingStreet__c":null,"SBQQ__ConsumptionRateOverride__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__CustomerDiscount__c":null,"SBQQ__DefaultTemplate__c":null,"SBQQ__DeliveryMethod__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__Distributor__c":null,"SBQQ__DocumentStatus__c":null,"SBQQ__EmailTemplateId__c":null,"SBQQ__EndDate__c":null,"SBQQ__FirstSegmentTermEndDate__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__Introduction__c":null,"SBQQ__Key__c":null,"SBQQ__LastCalculatedOn__c":null,"SBQQ__LastSavedOn__c":"2023-08-03T04:26:20.000+0000","SBQQ__LineItemsGrouped__c":false,"SBQQ__LineItemsPrinted__c":true,"SBQQ__MarkupRate__c":null,"SBQQ__MasterContract__c":null,"SBQQ__MasterEvergreenContract__c":null,"SBQQ__Notes__c":null,"SBQQ__Opportunity2__c":"0067e00000OCuXtAAL","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":true,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jIBSLAA4","SBQQ__Primary__c":true,"SBQQ__ProrationDayOfMonth__c":null,"SBQQ__QuoteLanguage__c":null,"SBQQ__QuoteProcessId__c":null,"SBQQ__QuoteTemplateId__c":null,"SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST - Account 2023-08-03 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-08-03","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":24.0,"SBQQ__TargetCustomerAmount__c":null,"SBQQ__Type__c":"Quote","SBQQ__Unopened__c":true,"SBQQ__WatermarkShown__c":false,"SBQQ__LineItemCount__c":1.0,"SBQQ__AdditionalDiscountAmount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__DaysQuoteOpen__c":0.0,"SBQQ__ExpirationDate__c":"2023-09-01","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":200.0,"SBQQ__ListAmount__c":200.0,"SBQQ__NetAmount__c":200.0,"SBQQ__RegularAmount__c":200.0}' - recorded_at: Thu, 03 Aug 2023 04:26:47 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0zDE00000LMv0yYAD"},"Id":"a0zDE00000LMv0yYAD","OwnerId":"005DE00000JiwzhYAB","IsDeleted":false,"Name":"Q-00124","CreatedDate":"2023-08-29T18:33:22.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:27.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:27.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-29T18:33:27.000+0000","LastReferencedDate":"2023-08-29T18:33:27.000+0000","SBQQ__Account__c":"001DE000036VQjRYAW","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-08-29 00:00:00 UTC","SBQQ__BillingPostalCode__c":null,"SBQQ__BillingState__c":null,"SBQQ__BillingStreet__c":null,"SBQQ__ConsumptionRateOverride__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__CustomerDiscount__c":null,"SBQQ__DefaultTemplate__c":null,"SBQQ__DeliveryMethod__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__Distributor__c":null,"SBQQ__DocumentStatus__c":null,"SBQQ__EmailTemplateId__c":null,"SBQQ__EndDate__c":null,"SBQQ__FirstSegmentTermEndDate__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__Introduction__c":null,"SBQQ__Key__c":null,"SBQQ__LastCalculatedOn__c":null,"SBQQ__LastSavedOn__c":"2023-08-29T18:33:27.000+0000","SBQQ__LineItemsGrouped__c":false,"SBQQ__LineItemsPrinted__c":true,"SBQQ__MarkupRate__c":null,"SBQQ__MasterContract__c":null,"SBQQ__MasterEvergreenContract__c":null,"SBQQ__Notes__c":null,"SBQQ__Opportunity2__c":"006DE00000wQl9LYAS","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":true,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01sDE000008q9JUYAY","SBQQ__PricebookId__c":"01sDE000008q9JUYAY","SBQQ__PrimaryContact__c":"003DE00002WlR3hYAF","SBQQ__Primary__c":true,"SBQQ__ProrationDayOfMonth__c":null,"SBQQ__QuoteLanguage__c":null,"SBQQ__QuoteProcessId__c":null,"SBQQ__QuoteTemplateId__c":null,"SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SalesRep__c":"005DE00000JiwzhYAB","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-08-29 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-08-29","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":24.0,"SBQQ__TargetCustomerAmount__c":null,"SBQQ__Type__c":"Quote","SBQQ__Unopened__c":true,"SBQQ__WatermarkShown__c":false,"SBQQ__LineItemCount__c":1.0,"SBQQ__AdditionalDiscountAmount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__DaysQuoteOpen__c":0.0,"SBQQ__ExpirationDate__c":"2023-09-28","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":200.0,"SBQQ__ListAmount__c":200.0,"SBQQ__NetAmount__c":200.0,"SBQQ__RegularAmount__c":200.0}' + recorded_at: Tue, 29 Aug 2023 18:33:48 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQsEAAU%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIarVYAT%27%0A body: encoding: US-ASCII string: '' @@ -4274,12 +4297,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:48 GMT + - Tue, 29 Aug 2023 18:34:30 GMT Set-Cookie: - - BrowserId=9mDiMzG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:48 + - BrowserId=sSae5UaaEe6U0fN8rRY3OQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:34:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4292,7 +4315,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11873/5000000 + - api-usage=6581/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4302,13 +4325,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:48 GMT + recorded_at: Tue, 29 Aug 2023 18:34:30 GMT - request: method: post uri: https://api.stripe.com/v1/prices body: encoding: UTF-8 - string: currency=usd&unit_amount_decimal=5000.0&recurring[interval_count]=6&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8027e000001bQsEAAU&metadata[salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQsEAAU&product=prod_ONeQax9jJ1hT1Q + string: currency=usd&unit_amount_decimal=10000.0&recurring[interval_count]=6&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_OXbxSDZ1lrlTIx&metadata[salesforce_pricebook_entry_id]=01uDE00000KVlM1YAL&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F01uDE00000KVlM1YAL headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -4317,15 +4340,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ghk8Ro5I4LzFGO","request_duration_ms":228}}' + - '{"last_request_metrics":{"request_id":"req_3STVMbebDEr3zq","request_duration_ms":291}}' Idempotency-Key: - - 1803bffd-0823-47b3-9c82-9038dd522b02 + - 3671fdc9-1532-4be2-b426-fad6e3ee4b1d Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4340,11 +4363,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:49 GMT + - Tue, 29 Aug 2023 18:34:30 GMT Content-Type: - application/json Content-Length: - - '849' + - '823' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -4360,19 +4383,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 1803bffd-0823-47b3-9c82-9038dd522b02 + - 3671fdc9-1532-4be2-b426-fad6e3ee4b1d Original-Request: - - req_VW4e3TMaJTIUn7 + - req_jnrOJXM6tqvMor Request-Id: - - req_VW4e3TMaJTIUn7 + - req_jnrOJXM6tqvMor Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '31.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -4381,22 +4402,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -4408,16 +4428,16 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" } - recorded_at: Thu, 03 Aug 2023 04:26:49 GMT + recorded_at: Tue, 29 Aug 2023 18:34:30 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8027e000001bQsEAAU + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM1YAL body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1Nat7dIsgf92XbAOc6B15r5V"}' + string: '{"Stripe_ID__c":"price_1NkWkEIsgf92XbAOncznmXHX"}' headers: User-Agent: - Faraday v2.4.0 @@ -4435,12 +4455,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:49 GMT + - Tue, 29 Aug 2023 18:34:31 GMT Set-Cookie: - - BrowserId=9s-pzTG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:49 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:49 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:49 + - BrowserId=sXIl9EaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:34:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4455,117 +4475,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11862/5000000 + - api-usage=6581/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:49 GMT -- request: - method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20OrderItem%0AWHERE%20OrderId%20=%20%278017e000000nRMWAA2%27%0A - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.4.0 - Authorization: - - OAuth - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 03 Aug 2023 04:26:49 GMT - Set-Cookie: - - BrowserId=9xxpbDG1Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:49 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:49 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:49 - GMT; Max-Age=31536000 - Strict-Transport-Security: - - max-age=63072000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Xss-Protection: - - 1; mode=block - X-Robots-Tag: - - none - Cache-Control: - - no-cache,must-revalidate,max-age=0,no-store,private - Sforce-Limit-Info: - - api-usage=11859/5000000 - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept-Encoding - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQsEAAU"},"Id":"8027e000001bQsEAAU"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:50 GMT -- request: - method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8027e000001bQsEAAU - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.4.0 - Authorization: - - OAuth - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 03 Aug 2023 04:26:50 GMT - Set-Cookie: - - BrowserId=91VUfzG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:50 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:50 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:50 - GMT; Max-Age=31536000 - Strict-Transport-Security: - - max-age=63072000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Xss-Protection: - - 1; mode=block - X-Robots-Tag: - - none - Cache-Control: - - no-cache,must-revalidate,max-age=0,no-store,private - Sforce-Limit-Info: - - api-usage=11874/5000000 - Last-Modified: - - Thu, 03 Aug 2023 04:26:49 GMT - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept-Encoding - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQsEAAU"},"Id":"8027e000001bQsEAAU","Product2Id":"01t7e000009AsuUAAS","IsDeleted":false,"OrderId":"8017e000000nRMWAA2","PricebookEntryId":"01u7e00000Isk4iAAB","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":200.0,"ListPrice":100.0,"TotalPrice":200.0,"ServiceDate":"2023-08-03","EndDate":"2025-08-02","Description":null,"CreatedDate":"2023-08-03T04:26:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:49.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:49.000+0000","OrderItemNumber":"0000001430","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Semiannual","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":"8007e000001iCPUAA2","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":null,"SBQQ__DimensionType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":null,"SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":2.0,"SBQQ__QuoteLine__c":"a0v7e000008xYD6AAM","SBQQ__QuotedListPrice__c":100.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":"a1B7e00000EX5CpEAL","SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":200.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1Nat7dIsgf92XbAOc6B15r5V","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1Nat7dIsgf92XbAOc6B15r5V"}' - recorded_at: Thu, 03 Aug 2023 04:26:50 GMT + recorded_at: Tue, 29 Aug 2023 18:34:31 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nat7dIsgf92XbAOc6B15r5V + uri: https://api.stripe.com/v1/customers/cus_OXbxbwOxZGraDf?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -4577,13 +4494,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_VW4e3TMaJTIUn7","request_duration_ms":204}}' + - '{"last_request_metrics":{"request_id":"req_jnrOJXM6tqvMor","request_duration_ms":317}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4598,11 +4515,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:50 GMT + - Tue, 29 Aug 2023 18:34:31 GMT Content-Type: - application/json Content-Length: - - '849' + - '1089' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -4618,13 +4535,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_vW86V71V2Pglzs + - req_dHBkGxzrOQobP4 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -4633,40 +4548,51 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1691036809, - "currency": "usd", - "custom_unit_amount": null, + "id": "cus_OXbxbwOxZGraDf", + "object": "customer", + "address": null, + "balance": 0, + "created": 1693334025, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "1540E8EA", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, "livemode": false, - "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" - }, - "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", - "recurring": { - "aggregate_usage": null, - "interval": "month", - "interval_count": 6, - "trial_period_days": null, - "usage_type": "licensed" + "salesforce_account_id": "001DE000036VQjRYAW", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjRYAW" }, - "tax_behavior": "unspecified", - "tiers_mode": null, - "transform_quantity": null, - "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "name": "REST Account 2023-08-29 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": { + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", + "object": "test_helpers.test_clock", + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693334025, + "livemode": false, + "name": null, + "status": "ready" + } } - recorded_at: Thu, 03 Aug 2023 04:26:50 GMT + recorded_at: Tue, 29 Aug 2023 18:34:31 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONeQtpBzdKza9Q?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/prices/price_1NkWkEIsgf92XbAOncznmXHX body: encoding: US-ASCII string: '' @@ -4678,13 +4604,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_vW86V71V2Pglzs","request_duration_ms":161}}' + - '{"last_request_metrics":{"request_id":"req_dHBkGxzrOQobP4","request_duration_ms":214}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4699,11 +4625,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:50 GMT + - Tue, 29 Aug 2023 18:34:31 GMT Content-Type: - application/json Content-Length: - - '1088' + - '823' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -4719,13 +4645,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_UgWSXMc5Pr4bIb + - req_ybGtPAvz48iEPr Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -4734,54 +4658,42 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONeQtpBzdKza9Q", - "object": "customer", - "address": null, - "balance": 0, - "created": 1691036803, - "currency": null, - "default_currency": null, - "default_source": null, - "delinquent": false, - "description": null, - "discount": null, - "email": null, - "invoice_prefix": "8D15DF9B", - "invoice_settings": { - "custom_fields": null, - "default_payment_method": null, - "footer": null, - "rendering_options": null - }, + "id": "price_1NkWkEIsgf92XbAOncznmXHX", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1693334070, + "currency": "usd", + "custom_unit_amount": null, "livemode": false, + "lookup_key": null, "metadata": { - "salesforce_account_id": "0017e00001iaQ1RAAU", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaQ1RAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", - "next_invoice_sequence": 1, - "phone": null, - "preferred_locales": [], - "shipping": null, - "tax_exempt": "none", - "test_clock": { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", - "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691036803, - "livemode": false, - "name": null, - "status": "ready" - } + "nickname": null, + "product": "prod_OXbxSDZ1lrlTIx", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 6, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 10000, + "unit_amount_decimal": "10000" } - recorded_at: Thu, 03 Aug 2023 04:26:50 GMT + recorded_at: Tue, 29 Aug 2023 18:34:31 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nRMWAA2&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nRMWAA2&start_date=1691020800&customer=cus_ONeQtpBzdKza9Q&phases[0][items][0][price]=price_1Nat7dIsgf92XbAOc6B15r5V&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bQsEAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQsEAAU&phases[0][items][0][quantity]=1&phases[0][end_date]=1754179200&phases[0][metadata][salesforce_order_id]=8017e000000nRMWAA2&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nRMWAA2 + string: end_behavior=cancel&metadata[salesforce_order_id]=801DE0000048GRtYAM&metadata[salesforce_order_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F801DE0000048GRtYAM&start_date=1693267200&customer=cus_OXbxbwOxZGraDf&phases[0][items][0][price]=price_1NkWkEIsgf92XbAOncznmXHX&phases[0][items][0][metadata][salesforce_order_item_id]=802DE00000Ay2bZYAR&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2bZYAR&phases[0][items][0][quantity]=1&phases[0][end_date]=1756425600&phases[0][metadata][salesforce_order_id]=801DE0000048GRtYAM&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F801DE0000048GRtYAM headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -4790,15 +4702,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_UgWSXMc5Pr4bIb","request_duration_ms":186}}' + - '{"last_request_metrics":{"request_id":"req_ybGtPAvz48iEPr","request_duration_ms":198}}' Idempotency-Key: - - 91a85222-a6ed-4457-9df0-7d2ffee3c967 + - 83613824-d153-4604-87f4-3dc104958c89 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4813,11 +4725,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:51 GMT + - Tue, 29 Aug 2023 18:34:32 GMT Content-Type: - application/json Content-Length: - - '2495' + - '2498' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -4833,19 +4745,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 91a85222-a6ed-4457-9df0-7d2ffee3c967 + - 83613824-d153-4604-87f4-3dc104958c89 Original-Request: - - req_x6qUBLl8rBPcf3 + - req_FIakSozkRVcBbk Request-Id: - - req_x6qUBLl8rBPcf3 + - req_FIakSozkRVcBbk Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '411.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -4854,17 +4764,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v", + "id": "sub_sched_1NkWkFIsgf92XbAOzbPMb3hS", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036803, + "created": 1693334025, "current_phase": { - "end_date": 1754179200, - "start_date": 1691020800 + "end_date": 1756425600, + "start_date": 1693267200 }, - "customer": "cus_ONeQtpBzdKza9Q", + "customer": "cus_OXbxbwOxZGraDf", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -4883,8 +4793,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "phases": [ { @@ -4899,29 +4809,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_order_item_id": "802DE00000Ay2bZYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bZYAR" }, - "plan": "price_1Nat7dIsgf92XbAOc6B15r5V", - "price": "price_1Nat7dIsgf92XbAOc6B15r5V", + "plan": "price_1NkWkEIsgf92XbAOncznmXHX", + "price": "price_1NkWkEIsgf92XbAOncznmXHX", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null } @@ -4931,16 +4841,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nat7fIsgf92XbAODFz16VSQ", - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW" + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe" } - recorded_at: Thu, 03 Aug 2023 04:26:51 GMT + recorded_at: Tue, 29 Aug 2023 18:34:32 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v"}' + string: '{"Stripe_ID__c":"sub_sched_1NkWkFIsgf92XbAOzbPMb3hS"}' headers: User-Agent: - Faraday v2.4.0 @@ -4958,12 +4868,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:51 GMT + - Tue, 29 Aug 2023 18:34:32 GMT Set-Cookie: - - BrowserId=-CtpTDG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:51 + - BrowserId=sjfAdkaaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:34:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4978,14 +4888,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11875/5000000 + - api-usage=6588/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:51 GMT + recorded_at: Tue, 29 Aug 2023 18:34:32 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWkFIsgf92XbAOzbPMb3hS?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -4997,13 +4907,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_x6qUBLl8rBPcf3","request_duration_ms":647}}' + - '{"last_request_metrics":{"request_id":"req_FIakSozkRVcBbk","request_duration_ms":662}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5018,11 +4928,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:52 GMT + - Tue, 29 Aug 2023 18:34:32 GMT Content-Type: - application/json Content-Length: - - '3612' + - '3579' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -5038,13 +4948,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_NifXGHhen6tDkK + - req_XaF5zcv0AogjYg Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5053,17 +4961,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v", + "id": "sub_sched_1NkWkFIsgf92XbAOzbPMb3hS", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036803, + "created": 1693334025, "current_phase": { - "end_date": 1754179200, - "start_date": 1691020800 + "end_date": 1756425600, + "start_date": 1693267200 }, - "customer": "cus_ONeQtpBzdKza9Q", + "customer": "cus_OXbxbwOxZGraDf", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -5082,8 +4990,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "phases": [ { @@ -5098,34 +5006,33 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_order_item_id": "802DE00000Ay2bZYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bZYAR" }, - "plan": "price_1Nat7dIsgf92XbAOc6B15r5V", + "plan": "price_1NkWkEIsgf92XbAOncznmXHX", "price": { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -5137,20 +5044,20 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" }, "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null } @@ -5160,35 +5067,21 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nat7fIsgf92XbAODFz16VSQ", - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW" + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe" } - recorded_at: Thu, 03 Aug 2023 04:26:52 GMT + recorded_at: Tue, 29 Aug 2023 18:34:32 GMT - request: - method: post - uri: https://api.stripe.com/v1/prices/price_1Nat7dIsgf92XbAOc6B15r5V + method: get + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%27801DE0000048GRyYAM%27%20%20AND%20Status%20=%20%27Activated%27 body: - encoding: UTF-8 - string: active=false + encoding: US-ASCII + string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_NifXGHhen6tDkK","request_duration_ms":194}}' - Idempotency-Key: - - 1fc0cf67-b6ac-4327-8288-52408bcb8da8 - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5198,134 +5091,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Thu, 03 Aug 2023 04:26:52 GMT - Content-Type: - - application/json - Content-Length: - - '850' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Idempotency-Key: - - 1fc0cf67-b6ac-4327-8288-52408bcb8da8 - Original-Request: - - req_UqcfHiBSSQJazQ - Request-Id: - - req_UqcfHiBSSQJazQ - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Should-Retry: - - 'false' - Stripe-Version: - - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '30.0' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Tue, 29 Aug 2023 18:34:32 GMT + Set-Cookie: + - BrowserId=so2BvkaaEe66xOsHs19I8Q; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:34:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:32 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload - body: - encoding: UTF-8 - string: |- - { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", - "object": "price", - "active": false, - "billing_scheme": "per_unit", - "created": 1691036809, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" - }, - "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", - "recurring": { - "aggregate_usage": null, - "interval": "month", - "interval_count": 6, - "trial_period_days": null, - "usage_type": "licensed" - }, - "tax_behavior": "unspecified", - "tiers_mode": null, - "transform_quantity": null, - "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" - } - recorded_at: Thu, 03 Aug 2023 04:26:52 GMT -- request: - method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278017e000000nRMgAAM%27%20%20AND%20Status%20=%20%27Activated%27 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.4.0 - Authorization: - - OAuth - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 03 Aug 2023 04:26:52 GMT - Set-Cookie: - - BrowserId=-LfK3zG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:52 - GMT; Max-Age=31536000 - Strict-Transport-Security: - - max-age=63072000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Xss-Protection: - - 1; mode=block - X-Robots-Tag: - - none - Cache-Control: - - no-cache,must-revalidate,max-age=0,no-store,private - Sforce-Limit-Info: - - api-usage=11876/5000000 - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept-Encoding - Transfer-Encoding: - - chunked + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=6581/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM"},"Id":"8017e000000nRMgAAM"}]}' - recorded_at: Thu, 03 Aug 2023 04:26:52 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM"},"Id":"801DE0000048GRyYAM"}]}' + recorded_at: Tue, 29 Aug 2023 18:34:32 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM body: encoding: US-ASCII string: '' @@ -5344,12 +5142,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:53 GMT + - Tue, 29 Aug 2023 18:34:33 GMT Set-Cookie: - - BrowserId=-OtdBjG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:53 + - BrowserId=sqbVm0aaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:34:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5362,9 +5160,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11877/5000000 + - api-usage=6584/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:26:51 GMT + - Tue, 29 Aug 2023 18:34:32 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5373,13 +5171,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2"},"Id":"8017e000000nRMWAA2","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuXtAAL","EffectiveDate":"2023-08-03","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T04:26:22.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001404","TotalAmount":200.0,"CreatedDate":"2023-08-03T04:26:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:51.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:26:51.000+0000","LastViewedDate":"2023-08-03T04:26:51.000+0000","LastReferencedDate":"2023-08-03T04:26:51.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM"},"Id":"801DE0000048GRtYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9LYAS","EffectiveDate":"2023-08-29","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:33:28.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000223","TotalAmount":200.0,"CreatedDate":"2023-08-29T18:33:27.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:34:32.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:34:32.000+0000","LastViewedDate":"2023-08-29T18:34:32.000+0000","LastReferencedDate":"2023-08-29T18:34:32.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":200.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v"}' - recorded_at: Thu, 03 Aug 2023 04:26:53 GMT + Needed","SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":200.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NkWkFIsgf92XbAOzbPMb3hS","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NkWkFIsgf92XbAOzbPMb3hS"}' + recorded_at: Tue, 29 Aug 2023 18:34:33 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWkFIsgf92XbAOzbPMb3hS body: encoding: US-ASCII string: '' @@ -5391,13 +5189,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_UqcfHiBSSQJazQ","request_duration_ms":219}}' + - '{"last_request_metrics":{"request_id":"req_XaF5zcv0AogjYg","request_duration_ms":232}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5412,11 +5210,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:53 GMT + - Tue, 29 Aug 2023 18:34:33 GMT Content-Type: - application/json Content-Length: - - '2495' + - '2498' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -5432,13 +5230,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_kUNbiklOOlqkIe + - req_J9gWOtX0F7PDYV Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5447,17 +5243,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v", + "id": "sub_sched_1NkWkFIsgf92XbAOzbPMb3hS", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036803, + "created": 1693334025, "current_phase": { - "end_date": 1754179200, - "start_date": 1691020800 + "end_date": 1756425600, + "start_date": 1693267200 }, - "customer": "cus_ONeQtpBzdKza9Q", + "customer": "cus_OXbxbwOxZGraDf", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -5476,8 +5272,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "phases": [ { @@ -5492,29 +5288,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_order_item_id": "802DE00000Ay2bZYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bZYAR" }, - "plan": "price_1Nat7dIsgf92XbAOc6B15r5V", - "price": "price_1Nat7dIsgf92XbAOc6B15r5V", + "plan": "price_1NkWkEIsgf92XbAOncznmXHX", + "price": "price_1NkWkEIsgf92XbAOncznmXHX", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null } @@ -5524,13 +5320,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nat7fIsgf92XbAODFz16VSQ", - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW" + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe" } - recorded_at: Thu, 03 Aug 2023 04:26:53 GMT + recorded_at: Tue, 29 Aug 2023 18:34:33 GMT - request: method: get - uri: https://api.stripe.com/v1/products/prod_ONeQax9jJ1hT1Q + uri: https://api.stripe.com/v1/products/prod_OXbxSDZ1lrlTIx body: encoding: US-ASCII string: '' @@ -5542,13 +5338,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_kUNbiklOOlqkIe","request_duration_ms":183}}' + - '{"last_request_metrics":{"request_id":"req_J9gWOtX0F7PDYV","request_duration_ms":218}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5563,11 +5359,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:53 GMT + - Tue, 29 Aug 2023 18:34:33 GMT Content-Type: - application/json Content-Length: - - '748' + - '749' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -5583,13 +5379,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_kWZZmL36ky5yoh + - req_oHAIuD6NM7GfFd Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5598,36 +5392,89 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONeQax9jJ1hT1Q", + "id": "prod_OXbxSDZ1lrlTIx", "object": "product", "active": true, "attributes": [], - "created": 1691036804, + "created": 1693334026, "default_price": null, "description": "A great description", "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AsuUAAS", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AsuUAAS" + "salesforce_product2_id": "01tDE00000IIarVYAT", + "salesforce_product2_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01tDE00000IIarVYAT" }, - "name": "REST Product2 2023-08-03 00:00:00 UTC", + "name": "REST Product2 2023-08-29 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-03-000000-utc-22", + "sku": "rest-product2--2023-08-29-000000-utc-30", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691036804, + "updated": 1693334026, "url": null } - recorded_at: Thu, 03 Aug 2023 04:26:53 GMT + recorded_at: Tue, 29 Aug 2023 18:34:33 GMT +- request: + method: get + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM1YAL + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 29 Aug 2023 18:34:33 GMT + Set-Cookie: + - BrowserId=swIVBkaaEe6C11WpwKrvIQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:34:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:33 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=6592/5000000 + Last-Modified: + - Tue, 29 Aug 2023 18:34:31 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01uDE00000KVlM1YAL"},"Id":"01uDE00000KVlM1YAL","Name":"REST + Product2 2023-08-29 00:00:00 UTC","Pricebook2Id":"01sDE000008q9JUYAY","Product2Id":"01tDE00000IIarVYAT","UnitPrice":100.0,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-29T18:33:20.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:34:31.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:34:31.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1NkWkEIsgf92XbAOncznmXHX","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NkWkEIsgf92XbAOncznmXHX"}' + recorded_at: Tue, 29 Aug 2023 18:34:33 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009AsuUAAS%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIarVYAT%27%0A body: encoding: US-ASCII string: '' @@ -5646,12 +5493,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:53 GMT + - Tue, 29 Aug 2023 18:34:33 GMT Set-Cookie: - - BrowserId=-WkZajG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:53 + - BrowserId=sxqme0aaEe6GpG8JsnxG4w; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:34:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5664,7 +5511,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11880/5000000 + - api-usage=6596/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5674,10 +5521,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:53 GMT + recorded_at: Tue, 29 Aug 2023 18:34:33 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQsEAAU%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2bZYAR%27%0A body: encoding: US-ASCII string: '' @@ -5696,12 +5543,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:54 GMT + - Tue, 29 Aug 2023 18:34:34 GMT Set-Cookie: - - BrowserId=-aJ4KTG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:54 + - BrowserId=szLB_EaaEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:34:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5714,7 +5561,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11878/5000000 + - api-usage=6589/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5724,10 +5571,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:54 GMT + recorded_at: Tue, 29 Aug 2023 18:34:34 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2 + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM body: encoding: US-ASCII string: '' @@ -5746,12 +5593,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:54 GMT + - Tue, 29 Aug 2023 18:34:34 GMT Set-Cookie: - - BrowserId=-dWWYzG1Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:54 + - BrowserId=s3fhIEaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:34:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:34:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5764,9 +5611,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11860/5000000 + - api-usage=6588/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:26:51 GMT + - Tue, 29 Aug 2023 18:34:32 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5775,13 +5622,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMWAA2"},"Id":"8017e000000nRMWAA2","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuXtAAL","EffectiveDate":"2023-08-03","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T04:26:22.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001404","TotalAmount":200.0,"CreatedDate":"2023-08-03T04:26:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:51.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:26:51.000+0000","LastViewedDate":"2023-08-03T04:26:53.000+0000","LastReferencedDate":"2023-08-03T04:26:53.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRtYAM"},"Id":"801DE0000048GRtYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9LYAS","EffectiveDate":"2023-08-29","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:33:28.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000223","TotalAmount":200.0,"CreatedDate":"2023-08-29T18:33:27.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:34:32.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:34:32.000+0000","LastViewedDate":"2023-08-29T18:34:33.000+0000","LastReferencedDate":"2023-08-29T18:34:33.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKjkAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":200.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v"}' - recorded_at: Thu, 03 Aug 2023 04:26:54 GMT + Needed","SBQQ__Quote__c":"a0zDE00000LMv0yYAD","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":200.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NkWkFIsgf92XbAOzbPMb3hS","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NkWkFIsgf92XbAOzbPMb3hS"}' + recorded_at: Tue, 29 Aug 2023 18:34:34 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nat7dIsgf92XbAOc6B15r5V?expand%5B%5D=tiers + uri: https://api.stripe.com/v1/prices/price_1NkWkEIsgf92XbAOncznmXHX?expand%5B%5D=tiers body: encoding: US-ASCII string: '' @@ -5793,13 +5640,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_kWZZmL36ky5yoh","request_duration_ms":172}}' + - '{"last_request_metrics":{"request_id":"req_oHAIuD6NM7GfFd","request_duration_ms":197}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5814,11 +5661,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:54 GMT + - Tue, 29 Aug 2023 18:35:02 GMT Content-Type: - application/json Content-Length: - - '850' + - '823' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -5834,13 +5681,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_YZ7HcmN3GXhvQh + - req_omtFqwaPUvpXKL Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5849,22 +5694,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", - "active": false, + "active": true, "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -5876,13 +5720,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" } - recorded_at: Thu, 03 Aug 2023 04:26:54 GMT + recorded_at: Tue, 29 Aug 2023 18:35:02 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQsEAAU%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIarVYAT%27%0A body: encoding: US-ASCII string: '' @@ -5901,12 +5745,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:55 GMT + - Tue, 29 Aug 2023 18:35:02 GMT Set-Cookie: - - BrowserId=-kF3YzG1Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:55 + - BrowserId=xA5mnUaaEe60kDOc1y-blA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5919,7 +5763,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11879/5000000 + - api-usage=6603/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5929,10 +5773,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:55 GMT + recorded_at: Tue, 29 Aug 2023 18:35:02 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nat7dIsgf92XbAOc6B15r5V + uri: https://api.stripe.com/v1/prices/price_1NkWkEIsgf92XbAOncznmXHX body: encoding: US-ASCII string: '' @@ -5944,13 +5788,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_YZ7HcmN3GXhvQh","request_duration_ms":177}}' + - '{"last_request_metrics":{"request_id":"req_omtFqwaPUvpXKL","request_duration_ms":211}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5965,11 +5809,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:55 GMT + - Tue, 29 Aug 2023 18:35:02 GMT Content-Type: - application/json Content-Length: - - '850' + - '823' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -5985,13 +5829,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_dLaRTOifTn7Dv1 + - req_B4fOZ6JMIekcvN Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6000,22 +5842,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", - "active": false, + "active": true, "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -6027,13 +5868,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" } - recorded_at: Thu, 03 Aug 2023 04:26:55 GMT + recorded_at: Tue, 29 Aug 2023 18:35:02 GMT - request: method: get - uri: https://api.stripe.com/v1/products/prod_ONeQax9jJ1hT1Q + uri: https://api.stripe.com/v1/products/prod_OXbxSDZ1lrlTIx body: encoding: US-ASCII string: '' @@ -6045,13 +5886,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dLaRTOifTn7Dv1","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_B4fOZ6JMIekcvN","request_duration_ms":211}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6066,11 +5907,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:55 GMT + - Tue, 29 Aug 2023 18:35:02 GMT Content-Type: - application/json Content-Length: - - '748' + - '749' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6086,13 +5927,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_ln3kIoZuBvGDdH + - req_dme9NTtZmXcbfF Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6101,36 +5940,36 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONeQax9jJ1hT1Q", + "id": "prod_OXbxSDZ1lrlTIx", "object": "product", "active": true, "attributes": [], - "created": 1691036804, + "created": 1693334026, "default_price": null, "description": "A great description", "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AsuUAAS", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AsuUAAS" + "salesforce_product2_id": "01tDE00000IIarVYAT", + "salesforce_product2_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01tDE00000IIarVYAT" }, - "name": "REST Product2 2023-08-03 00:00:00 UTC", + "name": "REST Product2 2023-08-29 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-03-000000-utc-22", + "sku": "rest-product2--2023-08-29-000000-utc-30", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691036804, + "updated": 1693334026, "url": null } - recorded_at: Thu, 03 Aug 2023 04:26:55 GMT + recorded_at: Tue, 29 Aug 2023 18:35:02 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009AsuUAAS%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701tDE00000IIarVYAT%27%0A body: encoding: US-ASCII string: '' @@ -6149,12 +5988,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:55 GMT + - Tue, 29 Aug 2023 18:35:02 GMT Set-Cookie: - - BrowserId=-q0KojG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:55 + - BrowserId=xGvv2UaaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6167,7 +6006,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11863/5000000 + - api-usage=6601/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6177,10 +6016,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:55 GMT + recorded_at: Tue, 29 Aug 2023 18:35:02 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQsOAAU%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2beYAB%27%0A body: encoding: US-ASCII string: '' @@ -6199,12 +6038,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:56 GMT + - Tue, 29 Aug 2023 18:35:03 GMT Set-Cookie: - - BrowserId=-ubfFzG1Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:56 + - BrowserId=xITPA0aaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6217,7 +6056,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11857/5000000 + - api-usage=6603/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6227,10 +6066,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:56 GMT + recorded_at: Tue, 29 Aug 2023 18:35:03 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQsOAAU%27%0A + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%27802DE00000Ay2beYAB%27%0A body: encoding: US-ASCII string: '' @@ -6249,12 +6088,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:56 GMT + - Tue, 29 Aug 2023 18:35:03 GMT Set-Cookie: - - BrowserId=-x5qIzG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:56 + - BrowserId=xJ38RkaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6267,7 +6106,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11864/5000000 + - api-usage=6602/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6277,13 +6116,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Thu, 03 Aug 2023 04:26:56 GMT + recorded_at: Tue, 29 Aug 2023 18:35:03 GMT - request: method: post uri: https://api.stripe.com/v1/prices body: encoding: UTF-8 - string: currency=usd&unit_amount_decimal=9999.981236073648&recurring[interval_count]=6&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8027e000001bQsOAAU&metadata[salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQsOAAU&product=prod_ONeQax9jJ1hT1Q + string: currency=usd&unit_amount_decimal=9999.981236073648&recurring[interval_count]=6&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=802DE00000Ay2beYAB&metadata[salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2beYAB&product=prod_OXbxSDZ1lrlTIx headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -6292,15 +6131,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ln3kIoZuBvGDdH","request_duration_ms":164}}' + - '{"last_request_metrics":{"request_id":"req_dme9NTtZmXcbfF","request_duration_ms":202}}' Idempotency-Key: - - 65ef7aa7-5aab-42d2-ae03-bf85f3655fab + - a081b1bb-af72-4d07-875a-58a7b7fe87c9 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6315,11 +6154,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:56 GMT + - Tue, 29 Aug 2023 18:35:03 GMT Content-Type: - application/json Content-Length: - - '862' + - '863' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6335,19 +6174,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 65ef7aa7-5aab-42d2-ae03-bf85f3655fab + - a081b1bb-af72-4d07-875a-58a7b7fe87c9 Original-Request: - - req_nx3kFaoB09WBPL + - req_sMlvAeW9XG90cx Request-Id: - - req_nx3kFaoB09WBPL + - req_sMlvAeW9XG90cx Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '30.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6356,22 +6193,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "id": "price_1NkWklIsgf92XbAOaRcorpUF", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036816, + "created": 1693334103, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU" + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -6386,13 +6223,13 @@ http_interactions: "unit_amount": null, "unit_amount_decimal": "9999.981236073648" } - recorded_at: Thu, 03 Aug 2023 04:26:56 GMT + recorded_at: Tue, 29 Aug 2023 18:35:03 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8027e000001bQsOAAU + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/802DE00000Ay2beYAB body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1Nat7kIsgf92XbAOzhCKC3lC"}' + string: '{"Stripe_ID__c":"price_1NkWklIsgf92XbAOaRcorpUF"}' headers: User-Agent: - Faraday v2.4.0 @@ -6410,12 +6247,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:26:57 GMT + - Tue, 29 Aug 2023 18:35:03 GMT Set-Cookie: - - BrowserId=-3YAajG1Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:57 + - BrowserId=xO0tz0aaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6430,14 +6267,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11884/5000000 + - api-usage=6604/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:26:57 GMT + recorded_at: Tue, 29 Aug 2023 18:35:03 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nat7dIsgf92XbAOc6B15r5V + uri: https://api.stripe.com/v1/prices/price_1NkWkEIsgf92XbAOncznmXHX body: encoding: US-ASCII string: '' @@ -6449,13 +6286,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_nx3kFaoB09WBPL","request_duration_ms":222}}' + - '{"last_request_metrics":{"request_id":"req_sMlvAeW9XG90cx","request_duration_ms":359}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6470,11 +6307,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:57 GMT + - Tue, 29 Aug 2023 18:35:04 GMT Content-Type: - application/json Content-Length: - - '850' + - '823' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6490,13 +6327,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_hWFC3dJJgvV9X5 + - req_wBirWqLCf8ptrf Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6505,22 +6340,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", - "active": false, + "active": true, "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -6532,13 +6366,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" } - recorded_at: Thu, 03 Aug 2023 04:26:57 GMT + recorded_at: Tue, 29 Aug 2023 18:35:04 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONeQtpBzdKza9Q?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OXbxbwOxZGraDf?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -6550,13 +6384,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_hWFC3dJJgvV9X5","request_duration_ms":164}}' + - '{"last_request_metrics":{"request_id":"req_wBirWqLCf8ptrf","request_duration_ms":208}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6571,11 +6405,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:57 GMT + - Tue, 29 Aug 2023 18:35:04 GMT Content-Type: - application/json Content-Length: - - '1090' + - '1091' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6591,13 +6425,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_gnanWkfrQsCch7 + - req_yQ5KvxSepR0TLx Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6606,11 +6438,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONeQtpBzdKza9Q", + "id": "cus_OXbxbwOxZGraDf", "object": "customer", "address": null, "balance": 0, - "created": 1691036803, + "created": 1693334025, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -6618,7 +6450,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "8D15DF9B", + "invoice_prefix": "1540E8EA", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -6627,30 +6459,30 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaQ1RAAU", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaQ1RAAU" + "salesforce_account_id": "001DE000036VQjRYAW", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjRYAW" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", + "name": "REST Account 2023-08-29 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], "shipping": null, "tax_exempt": "none", "test_clock": { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691036803, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693334025, "livemode": false, "name": null, "status": "ready" } } - recorded_at: Thu, 03 Aug 2023 04:26:57 GMT + recorded_at: Tue, 29 Aug 2023 18:35:04 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nat7dIsgf92XbAOc6B15r5V + uri: https://api.stripe.com/v1/prices/price_1NkWkEIsgf92XbAOncznmXHX body: encoding: US-ASCII string: '' @@ -6662,13 +6494,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_gnanWkfrQsCch7","request_duration_ms":190}}' + - '{"last_request_metrics":{"request_id":"req_yQ5KvxSepR0TLx","request_duration_ms":210}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6683,11 +6515,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:58 GMT + - Tue, 29 Aug 2023 18:35:04 GMT Content-Type: - application/json Content-Length: - - '850' + - '823' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6703,13 +6535,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_0vtYJxuPtvfIaE + - req_6sTXgSNcCAD0uZ Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6718,22 +6548,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", - "active": false, + "active": true, "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -6745,13 +6574,13 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" } - recorded_at: Thu, 03 Aug 2023 04:26:58 GMT + recorded_at: Tue, 29 Aug 2023 18:35:04 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1Nat7kIsgf92XbAOzhCKC3lC + uri: https://api.stripe.com/v1/prices/price_1NkWklIsgf92XbAOaRcorpUF body: encoding: US-ASCII string: '' @@ -6763,13 +6592,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_0vtYJxuPtvfIaE","request_duration_ms":168}}' + - '{"last_request_metrics":{"request_id":"req_6sTXgSNcCAD0uZ","request_duration_ms":198}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6784,11 +6613,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:58 GMT + - Tue, 29 Aug 2023 18:35:04 GMT Content-Type: - application/json Content-Length: - - '862' + - '863' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6804,13 +6633,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_niKjF0XgVA1KFg + - req_rdQByPkpl00VO4 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6819,22 +6646,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "id": "price_1NkWklIsgf92XbAOaRcorpUF", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036816, + "created": 1693334103, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU" + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -6849,10 +6676,10 @@ http_interactions: "unit_amount": null, "unit_amount_decimal": "9999.981236073648" } - recorded_at: Thu, 03 Aug 2023 04:26:58 GMT + recorded_at: Tue, 29 Aug 2023 18:35:04 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM body: encoding: US-ASCII string: '' @@ -6871,12 +6698,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:26:58 GMT + - Tue, 29 Aug 2023 18:35:04 GMT Set-Cookie: - - BrowserId=_DV_lTG1Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:26:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:26:58 + - BrowserId=xZz130aaEe6XFrMHTlnNAA; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:04 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6889,9 +6716,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11865/5000000 + - api-usage=6602/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:26:36 GMT + - Tue, 29 Aug 2023 18:33:40 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -6900,15 +6727,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM"},"Id":"8017e000000nRMgAAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuY1AAL","EffectiveDate":"2023-08-23","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T04:26:36.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001405","TotalAmount":194.68,"CreatedDate":"2023-08-03T04:26:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:36.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:26:36.000+0000","LastViewedDate":"2023-08-03T04:26:57.000+0000","LastReferencedDate":"2023-08-03T04:26:57.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Thu, 03 Aug 2023 04:26:58 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM"},"Id":"801DE0000048GRyYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9QYAS","EffectiveDate":"2023-09-18","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:33:40.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000224","TotalAmount":194.68,"CreatedDate":"2023-08-29T18:33:38.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:40.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:33:40.000+0000","LastViewedDate":"2023-08-29T18:35:03.000+0000","LastReferencedDate":"2023-08-29T18:35:03.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Tue, 29 Aug 2023 18:35:04 GMT - request: method: post uri: https://api.stripe.com/v1/prices body: encoding: UTF-8 - string: billing_scheme=per_unit¤cy=usd&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8027e000001bQsOAAU&metadata[salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQsOAAU&metadata[salesforce_duplicate]=true&metadata[salesforce_original_stripe_price_id]=price_1Nat7kIsgf92XbAOzhCKC3lC&metadata[salesforce_proration]=true&product=prod_ONeQax9jJ1hT1Q&tax_behavior=unspecified&unit_amount_decimal=4468.028145889527 + string: billing_scheme=per_unit¤cy=usd&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=802DE00000Ay2beYAB&metadata[salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2beYAB&metadata[salesforce_duplicate]=true&metadata[salesforce_original_stripe_price_id]=price_1NkWklIsgf92XbAOaRcorpUF&metadata[salesforce_proration]=true&product=prod_OXbxSDZ1lrlTIx&tax_behavior=unspecified&unit_amount_decimal=4468.028145889527 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -6917,15 +6745,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_niKjF0XgVA1KFg","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_rdQByPkpl00VO4","request_duration_ms":200}}' Idempotency-Key: - - c8b3bd6a-c51e-44f5-925a-834d54ef6137 + - dacf4837-8dbe-468d-80b3-9643803ad434 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6940,11 +6768,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:58 GMT + - Tue, 29 Aug 2023 18:35:05 GMT Content-Type: - application/json Content-Length: - - '870' + - '871' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -6960,19 +6788,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - c8b3bd6a-c51e-44f5-925a-834d54ef6137 + - dacf4837-8dbe-468d-80b3-9643803ad434 Original-Request: - - req_wi57aH9QJJ10nK + - req_tExrngf1c8BMkb Request-Id: - - req_wi57aH9QJJ10nK + - req_tExrngf1c8BMkb Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '49.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6981,11 +6807,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7mIsgf92XbAONS0Hm4Cg", + "id": "price_1NkWknIsgf92XbAOrFWRqNFE", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036818, + "created": 1693334105, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -6993,13 +6819,13 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU", - "salesforce_original_stripe_price_id": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", + "salesforce_original_stripe_price_id": "price_1NkWklIsgf92XbAOaRcorpUF", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, @@ -7008,10 +6834,10 @@ http_interactions: "unit_amount": null, "unit_amount_decimal": "4468.028145889527" } - recorded_at: Thu, 03 Aug 2023 04:26:58 GMT + recorded_at: Tue, 29 Aug 2023 18:35:05 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONeQtpBzdKza9Q?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OXbxbwOxZGraDf?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -7023,13 +6849,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_wi57aH9QJJ10nK","request_duration_ms":242}}' + - '{"last_request_metrics":{"request_id":"req_tExrngf1c8BMkb","request_duration_ms":303}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7044,11 +6870,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:59 GMT + - Tue, 29 Aug 2023 18:35:05 GMT Content-Type: - application/json Content-Length: - - '1090' + - '1091' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7064,13 +6890,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_AHSPTETBCqdEOm + - req_i4KcmFj9cUoMtl Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7079,11 +6903,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONeQtpBzdKza9Q", + "id": "cus_OXbxbwOxZGraDf", "object": "customer", "address": null, "balance": 0, - "created": 1691036803, + "created": 1693334025, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -7091,7 +6915,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "8D15DF9B", + "invoice_prefix": "1540E8EA", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7100,33 +6924,33 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaQ1RAAU", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaQ1RAAU" + "salesforce_account_id": "001DE000036VQjRYAW", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjRYAW" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", + "name": "REST Account 2023-08-29 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], "shipping": null, "tax_exempt": "none", "test_clock": { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691036803, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693334025, "livemode": false, "name": null, "status": "ready" } } - recorded_at: Thu, 03 Aug 2023 04:26:59 GMT + recorded_at: Tue, 29 Aug 2023 18:35:05 GMT - request: method: post - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWkFIsgf92XbAOzbPMb3hS body: encoding: UTF-8 - string: phases[0][currency]=usd&phases[0][end_date]=1692748800&phases[0][items][0][billing_thresholds]=&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bQsEAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQsEAAU&phases[0][items][0][plan]=price_1Nat7dIsgf92XbAOc6B15r5V&phases[0][items][0][price]=price_1Nat7dIsgf92XbAOc6B15r5V&phases[0][items][0][quantity]=1&phases[0][metadata][salesforce_order_id]=8017e000000nRMWAA2&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nRMWAA2&phases[0][proration_behavior]=create_prorations&phases[0][start_date]=1691020800&phases[1][add_invoice_items][0][metadata][salesforce_order_item_id]=8027e000001bQsOAAU&phases[1][add_invoice_items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQsOAAU&phases[1][add_invoice_items][0][metadata][salesforce_proration]=true&phases[1][add_invoice_items][0][quantity]=1&phases[1][add_invoice_items][0][price]=price_1Nat7mIsgf92XbAONS0Hm4Cg&phases[1][add_invoice_items][0][period][end][type]=subscription_period_end&phases[1][add_invoice_items][0][period][start][type]=phase_start&phases[1][items][0][price]=price_1Nat7dIsgf92XbAOc6B15r5V&phases[1][items][0][metadata][salesforce_order_item_id]=8027e000001bQsEAAU&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQsEAAU&phases[1][items][0][quantity]=1&phases[1][items][1][price]=price_1Nat7kIsgf92XbAOzhCKC3lC&phases[1][items][1][metadata][salesforce_order_item_id]=8027e000001bQsOAAU&phases[1][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQsOAAU&phases[1][items][1][quantity]=1&phases[1][proration_behavior]=none&phases[1][metadata][salesforce_order_id]=8017e000000nRMgAAM&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nRMgAAM&phases[1][start_date]=1692748800&phases[1][end_date]=1754179200&proration_behavior=none + string: phases[0][currency]=usd&phases[0][end_date]=1694995200&phases[0][items][0][billing_thresholds]=&phases[0][items][0][metadata][salesforce_order_item_id]=802DE00000Ay2bZYAR&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2bZYAR&phases[0][items][0][plan]=price_1NkWkEIsgf92XbAOncznmXHX&phases[0][items][0][price]=price_1NkWkEIsgf92XbAOncznmXHX&phases[0][items][0][quantity]=1&phases[0][metadata][salesforce_order_id]=801DE0000048GRtYAM&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F801DE0000048GRtYAM&phases[0][proration_behavior]=create_prorations&phases[0][start_date]=1693267200&phases[1][add_invoice_items][0][metadata][salesforce_order_item_id]=802DE00000Ay2beYAB&phases[1][add_invoice_items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2beYAB&phases[1][add_invoice_items][0][metadata][salesforce_proration]=true&phases[1][add_invoice_items][0][quantity]=1&phases[1][add_invoice_items][0][price]=price_1NkWknIsgf92XbAOrFWRqNFE&phases[1][add_invoice_items][0][period][end][type]=subscription_period_end&phases[1][add_invoice_items][0][period][start][type]=phase_start&phases[1][items][0][price]=price_1NkWkEIsgf92XbAOncznmXHX&phases[1][items][0][metadata][salesforce_order_item_id]=802DE00000Ay2bZYAR&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2bZYAR&phases[1][items][0][quantity]=1&phases[1][items][1][price]=price_1NkWklIsgf92XbAOaRcorpUF&phases[1][items][1][metadata][salesforce_order_item_id]=802DE00000Ay2beYAB&phases[1][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F802DE00000Ay2beYAB&phases[1][items][1][quantity]=1&phases[1][proration_behavior]=none&phases[1][metadata][salesforce_order_id]=801DE0000048GRyYAM&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fcustomer-enterprise-8894-dev-ed.scratch.my.salesforce.com%2F801DE0000048GRyYAM&phases[1][start_date]=1694995200&phases[1][end_date]=1756425600&proration_behavior=none headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7135,15 +6959,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_AHSPTETBCqdEOm","request_duration_ms":184}}' + - '{"last_request_metrics":{"request_id":"req_i4KcmFj9cUoMtl","request_duration_ms":222}}' Idempotency-Key: - - 6eb14d3e-fbaf-4b16-a217-209d28331dc0 + - aaf11a4a-8ff4-4685-a328-3cd413d334ae Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7158,11 +6982,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:26:59 GMT + - Tue, 29 Aug 2023 18:35:06 GMT Content-Type: - application/json Content-Length: - - '4900' + - '4907' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7178,19 +7002,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 6eb14d3e-fbaf-4b16-a217-209d28331dc0 + - aaf11a4a-8ff4-4685-a328-3cd413d334ae Original-Request: - - req_7QdYt0lSPotGb4 + - req_ISNu8p7XDhsd68 Request-Id: - - req_7QdYt0lSPotGb4 + - req_ISNu8p7XDhsd68 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '435.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7199,17 +7021,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v", + "id": "sub_sched_1NkWkFIsgf92XbAOzbPMb3hS", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036803, + "created": 1693334025, "current_phase": { - "end_date": 1692748800, - "start_date": 1691020800 + "end_date": 1694995200, + "start_date": 1693267200 }, - "customer": "cus_ONeQtpBzdKza9Q", + "customer": "cus_OXbxbwOxZGraDf", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7231,8 +7053,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "phases": [ { @@ -7247,29 +7069,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1692748800, + "end_date": 1694995200, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_order_item_id": "802DE00000Ay2bZYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bZYAR" }, - "plan": "price_1Nat7dIsgf92XbAOc6B15r5V", - "price": "price_1Nat7dIsgf92XbAOc6B15r5V", + "plan": "price_1NkWkEIsgf92XbAOncznmXHX", + "price": "price_1NkWkEIsgf92XbAOncznmXHX", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null }, @@ -7278,8 +7100,8 @@ http_interactions: { "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", "salesforce_proration": "true" }, "period": { @@ -7290,7 +7112,7 @@ http_interactions: "type": "phase_start" } }, - "price": "price_1Nat7mIsgf92XbAONS0Hm4Cg", + "price": "price_1NkWknIsgf92XbAOrFWRqNFE", "quantity": 1, "tax_rates": [] } @@ -7305,18 +7127,18 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_order_item_id": "802DE00000Ay2bZYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bZYAR" }, - "plan": "price_1Nat7dIsgf92XbAOc6B15r5V", - "price": "price_1Nat7dIsgf92XbAOc6B15r5V", + "plan": "price_1NkWkEIsgf92XbAOncznmXHX", + "price": "price_1NkWkEIsgf92XbAOncznmXHX", "quantity": 1, "tax_rates": [] }, @@ -7324,22 +7146,22 @@ http_interactions: "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU" + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB" }, - "plan": "price_1Nat7kIsgf92XbAOzhCKC3lC", - "price": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "plan": "price_1NkWklIsgf92XbAOaRcorpUF", + "price": "price_1NkWklIsgf92XbAOaRcorpUF", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRMgAAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMgAAM" + "salesforce_order_id": "801DE0000048GRyYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRyYAM" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1692748800, + "start_date": 1694995200, "transfer_data": null, "trial_end": null } @@ -7349,16 +7171,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nat7fIsgf92XbAODFz16VSQ", - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW" + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe" } - recorded_at: Thu, 03 Aug 2023 04:26:59 GMT + recorded_at: Tue, 29 Aug 2023 18:35:06 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v"}' + string: '{"Stripe_ID__c":"sub_sched_1NkWkFIsgf92XbAOzbPMb3hS"}' headers: User-Agent: - Faraday v2.4.0 @@ -7376,12 +7198,12 @@ http_interactions: message: No Content headers: Date: - - Thu, 03 Aug 2023 04:27:00 GMT + - Tue, 29 Aug 2023 18:35:06 GMT Set-Cookie: - - BrowserId=_R4yHjG1Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:27:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:27:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:27:00 + - BrowserId=xo4zlEaaEe6QGuE4Bw3oZQ; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7396,18 +7218,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11861/5000000 + - api-usage=6602/5000000 body: encoding: UTF-8 string: '' - recorded_at: Thu, 03 Aug 2023 04:27:00 GMT + recorded_at: Tue, 29 Aug 2023 18:35:06 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nRMgAAM-8017e000000nRMgAAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/801DE0000048GRyYAM-801DE0000048GRyYAM body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nRMgAAM","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nRMgAAM","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"801DE0000048GRyYAM","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"801DE0000048GRyYAM","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync + Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NkWkFIsgf92XbAOzbPMb3hS","Resolution_Status__c":"Success"}' headers: User-Agent: - Faraday v2.4.0 @@ -7425,12 +7247,12 @@ http_interactions: message: Created headers: Date: - - Thu, 03 Aug 2023 04:27:00 GMT + - Tue, 29 Aug 2023 18:35:06 GMT Set-Cookie: - - BrowserId=_WtnUTG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:27:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:27:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:27:00 + - BrowserId=xr-j_EaaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7443,20 +7265,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11881/5000000 + - api-usage=6605/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002Gs5dEAC" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1WDE000003traA2AQ" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002Gs5dEAC","success":true,"errors":[],"created":true}' - recorded_at: Thu, 03 Aug 2023 04:27:00 GMT + string: '{"id":"a1WDE000003traA2AQ","success":true,"errors":[],"created":true}' + recorded_at: Tue, 29 Aug 2023 18:35:06 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWkFIsgf92XbAOzbPMb3hS?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -7468,13 +7290,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_7QdYt0lSPotGb4","request_duration_ms":708}}' + - '{"last_request_metrics":{"request_id":"req_ISNu8p7XDhsd68","request_duration_ms":812}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7489,11 +7311,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:00 GMT + - Tue, 29 Aug 2023 18:35:07 GMT Content-Type: - application/json Content-Length: - - '9374' + - '9309' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7509,13 +7331,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_FjDrZEUrcZZkYP + - req_0igpXz4hoEBRvi Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7524,17 +7344,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v", + "id": "sub_sched_1NkWkFIsgf92XbAOzbPMb3hS", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036803, + "created": 1693334025, "current_phase": { - "end_date": 1692748800, - "start_date": 1691020800 + "end_date": 1694995200, + "start_date": 1693267200 }, - "customer": "cus_ONeQtpBzdKza9Q", + "customer": "cus_OXbxbwOxZGraDf", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7556,8 +7376,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "phases": [ { @@ -7572,34 +7392,33 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1692748800, + "end_date": 1694995200, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_order_item_id": "802DE00000Ay2bZYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bZYAR" }, - "plan": "price_1Nat7dIsgf92XbAOc6B15r5V", + "plan": "price_1NkWkEIsgf92XbAOncznmXHX", "price": { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", - "active": false, + "active": true, "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7611,20 +7430,20 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" }, "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null }, @@ -7633,8 +7452,8 @@ http_interactions: { "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", "salesforce_proration": "true" }, "period": { @@ -7646,11 +7465,11 @@ http_interactions: } }, "price": { - "id": "price_1Nat7mIsgf92XbAONS0Hm4Cg", + "id": "price_1NkWknIsgf92XbAOrFWRqNFE", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036818, + "created": 1693334105, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -7658,13 +7477,13 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU", - "salesforce_original_stripe_price_id": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", + "salesforce_original_stripe_price_id": "price_1NkWklIsgf92XbAOaRcorpUF", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, @@ -7687,34 +7506,33 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_order_item_id": "802DE00000Ay2bZYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bZYAR" }, - "plan": "price_1Nat7dIsgf92XbAOc6B15r5V", + "plan": "price_1NkWkEIsgf92XbAOncznmXHX", "price": { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", - "active": false, + "active": true, "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7726,8 +7544,8 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" }, "quantity": 1, "tax_rates": [] @@ -7736,27 +7554,27 @@ http_interactions: "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU" + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB" }, - "plan": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "plan": "price_1NkWklIsgf92XbAOaRcorpUF", "price": { - "id": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "id": "price_1NkWklIsgf92XbAOaRcorpUF", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036816, + "created": 1693334103, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU" + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7776,12 +7594,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nRMgAAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMgAAM" + "salesforce_order_id": "801DE0000048GRyYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRyYAM" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1692748800, + "start_date": 1694995200, "transfer_data": null, "trial_end": null } @@ -7791,13 +7609,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nat7fIsgf92XbAODFz16VSQ", - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW" + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe" } - recorded_at: Thu, 03 Aug 2023 04:27:00 GMT + recorded_at: Tue, 29 Aug 2023 18:35:07 GMT - request: method: post - uri: https://api.stripe.com/v1/prices/price_1Nat7kIsgf92XbAOzhCKC3lC + uri: https://api.stripe.com/v1/prices/price_1NkWklIsgf92XbAOaRcorpUF body: encoding: UTF-8 string: active=false @@ -7809,15 +7627,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_FjDrZEUrcZZkYP","request_duration_ms":203}}' + - '{"last_request_metrics":{"request_id":"req_0igpXz4hoEBRvi","request_duration_ms":236}}' Idempotency-Key: - - 04e4e220-09be-46f5-b316-60b4cc09cf06 + - '025998e2-bff2-4340-a6e6-9f1059c1df89' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7832,11 +7650,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:01 GMT + - Tue, 29 Aug 2023 18:35:07 GMT Content-Type: - application/json Content-Length: - - '863' + - '864' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7852,19 +7670,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 04e4e220-09be-46f5-b316-60b4cc09cf06 + - '025998e2-bff2-4340-a6e6-9f1059c1df89' Original-Request: - - req_EfBU8bNFlAOTjO + - req_syq3JmWyttEGBn Request-Id: - - req_EfBU8bNFlAOTjO + - req_syq3JmWyttEGBn Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '38.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7873,22 +7689,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "id": "price_1NkWklIsgf92XbAOaRcorpUF", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691036816, + "created": 1693334103, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU" + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7903,10 +7719,10 @@ http_interactions: "unit_amount": null, "unit_amount_decimal": "9999.981236073648" } - recorded_at: Thu, 03 Aug 2023 04:27:01 GMT + recorded_at: Tue, 29 Aug 2023 18:35:07 GMT - request: method: post - uri: https://api.stripe.com/v1/prices/price_1Nat7mIsgf92XbAONS0Hm4Cg + uri: https://api.stripe.com/v1/prices/price_1NkWknIsgf92XbAOrFWRqNFE body: encoding: UTF-8 string: active=false @@ -7918,15 +7734,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_EfBU8bNFlAOTjO","request_duration_ms":246}}' + - '{"last_request_metrics":{"request_id":"req_syq3JmWyttEGBn","request_duration_ms":272}}' Idempotency-Key: - - bf5d8d47-5292-4b9a-bddc-17e1a2078c08 + - 57f141eb-921a-4585-9de8-2111819d4e16 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7941,11 +7757,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:01 GMT + - Tue, 29 Aug 2023 18:35:07 GMT Content-Type: - application/json Content-Length: - - '871' + - '872' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -7961,19 +7777,17 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - bf5d8d47-5292-4b9a-bddc-17e1a2078c08 + - 57f141eb-921a-4585-9de8-2111819d4e16 Original-Request: - - req_KUsvDA3WdYV7Mu + - req_XoJKDTh7NljQQ8 Request-Id: - - req_KUsvDA3WdYV7Mu + - req_XoJKDTh7NljQQ8 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '30.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7982,11 +7796,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1Nat7mIsgf92XbAONS0Hm4Cg", + "id": "price_1NkWknIsgf92XbAOrFWRqNFE", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691036818, + "created": 1693334105, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -7994,13 +7808,13 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU", - "salesforce_original_stripe_price_id": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", + "salesforce_original_stripe_price_id": "price_1NkWklIsgf92XbAOaRcorpUF", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, @@ -8009,10 +7823,10 @@ http_interactions: "unit_amount": null, "unit_amount_decimal": "4468.028145889527" } - recorded_at: Thu, 03 Aug 2023 04:27:01 GMT + recorded_at: Tue, 29 Aug 2023 18:35:07 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM body: encoding: US-ASCII string: '' @@ -8031,12 +7845,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:27:01 GMT + - Tue, 29 Aug 2023 18:35:07 GMT Set-Cookie: - - BrowserId=_hkMiTG1Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:27:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:27:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:27:01 + - BrowserId=x17KIkaaEe64aq0EoH1qyw; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8049,9 +7863,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11882/5000000 + - api-usage=6603/5000000 Last-Modified: - - Thu, 03 Aug 2023 04:27:00 GMT + - Tue, 29 Aug 2023 18:35:06 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8060,12 +7874,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nRMgAAM"},"Id":"8017e000000nRMgAAM","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaQ1RAAU","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000OCuY1AAL","EffectiveDate":"2023-08-23","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-03T04:26:36.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001405","TotalAmount":194.68,"CreatedDate":"2023-08-03T04:26:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:27:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-03T04:27:00.000+0000","LastViewedDate":"2023-08-03T04:27:00.000+0000","LastReferencedDate":"2023-08-03T04:27:00.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKjpAAH","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v"}' - recorded_at: Thu, 03 Aug 2023 04:27:01 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/801DE0000048GRyYAM"},"Id":"801DE0000048GRyYAM","OwnerId":"005DE00000JiwzhYAB","ContractId":null,"AccountId":"001DE000036VQjRYAW","Pricebook2Id":"01sDE000008q9JUYAY","OriginalOrderId":null,"OpportunityId":"006DE00000wQl9QYAS","EffectiveDate":"2023-09-18","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-29T18:33:40.000+0000","ActivatedById":"005DE00000JiwzhYAB","StatusCode":"Activated","OrderNumber":"00000224","TotalAmount":194.68,"CreatedDate":"2023-08-29T18:33:38.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:35:06.000+0000","LastModifiedById":"005DE00000JiwzhYAB","IsDeleted":false,"SystemModstamp":"2023-08-29T18:35:06.000+0000","LastViewedDate":"2023-08-29T18:35:06.000+0000","LastReferencedDate":"2023-08-29T18:35:06.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0zDE00000LMv13YAD","SBQQ__RenewalTerm__c":24.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":194.68,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NkWkFIsgf92XbAOzbPMb3hS","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NkWkFIsgf92XbAOzbPMb3hS"}' + recorded_at: Tue, 29 Aug 2023 18:35:07 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NkWkFIsgf92XbAOzbPMb3hS body: encoding: US-ASCII string: '' @@ -8077,13 +7892,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_KUsvDA3WdYV7Mu","request_duration_ms":238}}' + - '{"last_request_metrics":{"request_id":"req_XoJKDTh7NljQQ8","request_duration_ms":325}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8098,11 +7913,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:01 GMT + - Tue, 29 Aug 2023 18:35:08 GMT Content-Type: - application/json Content-Length: - - '4900' + - '4907' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -8118,13 +7933,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_LlK01RhEYqnAZq + - req_O7gNSWywCuy6g5 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8133,17 +7946,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Nat7fIsgf92XbAOe8Q5zW7v", + "id": "sub_sched_1NkWkFIsgf92XbAOzbPMb3hS", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691036803, + "created": 1693334025, "current_phase": { - "end_date": 1692748800, - "start_date": 1691020800 + "end_date": 1694995200, + "start_date": 1693267200 }, - "customer": "cus_ONeQtpBzdKza9Q", + "customer": "cus_OXbxbwOxZGraDf", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -8165,8 +7978,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "phases": [ { @@ -8181,29 +7994,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1692748800, + "end_date": 1694995200, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_order_item_id": "802DE00000Ay2bZYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bZYAR" }, - "plan": "price_1Nat7dIsgf92XbAOc6B15r5V", - "price": "price_1Nat7dIsgf92XbAOc6B15r5V", + "plan": "price_1NkWkEIsgf92XbAOncznmXHX", + "price": "price_1NkWkEIsgf92XbAOncznmXHX", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRMWAA2", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMWAA2" + "salesforce_order_id": "801DE0000048GRtYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRtYAM" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1691020800, + "start_date": 1693267200, "transfer_data": null, "trial_end": null }, @@ -8212,8 +8025,8 @@ http_interactions: { "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", "salesforce_proration": "true" }, "period": { @@ -8224,7 +8037,7 @@ http_interactions: "type": "phase_start" } }, - "price": "price_1Nat7mIsgf92XbAONS0Hm4Cg", + "price": "price_1NkWknIsgf92XbAOrFWRqNFE", "quantity": 1, "tax_rates": [] } @@ -8239,18 +8052,18 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1754179200, + "end_date": 1756425600, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_order_item_id": "802DE00000Ay2bZYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bZYAR" }, - "plan": "price_1Nat7dIsgf92XbAOc6B15r5V", - "price": "price_1Nat7dIsgf92XbAOc6B15r5V", + "plan": "price_1NkWkEIsgf92XbAOncznmXHX", + "price": "price_1NkWkEIsgf92XbAOncznmXHX", "quantity": 1, "tax_rates": [] }, @@ -8258,22 +8071,22 @@ http_interactions: "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU" + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB" }, - "plan": "price_1Nat7kIsgf92XbAOzhCKC3lC", - "price": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "plan": "price_1NkWklIsgf92XbAOaRcorpUF", + "price": "price_1NkWklIsgf92XbAOaRcorpUF", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nRMgAAM", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nRMgAAM" + "salesforce_order_id": "801DE0000048GRyYAM", + "salesforce_order_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/801DE0000048GRyYAM" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1692748800, + "start_date": 1694995200, "transfer_data": null, "trial_end": null } @@ -8283,13 +8096,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Nat7fIsgf92XbAODFz16VSQ", - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW" + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe" } - recorded_at: Thu, 03 Aug 2023 04:27:01 GMT + recorded_at: Tue, 29 Aug 2023 18:35:08 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU + uri: https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW body: encoding: US-ASCII string: '' @@ -8308,12 +8121,12 @@ http_interactions: message: OK headers: Date: - - Thu, 03 Aug 2023 04:27:02 GMT + - Tue, 29 Aug 2023 18:35:08 GMT Set-Cookie: - - BrowserId=_m6mKjG1Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Fri, - 02-Aug-2024 04:27:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:27:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 02-Aug-2024 04:27:02 + - BrowserId=x5teCUaaEe6eRVNITIVIlg; domain=.salesforce.com; path=/; expires=Wed, + 28-Aug-2024 18:35:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 28-Aug-2024 18:35:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8326,11 +8139,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=11889/5000000 + - api-usage=6606/5000000 Etag: - '"G1Nv+Sb4ET8yi4FNWG9QT/ZcEmJXKJ6PxWEsxnJOmzw=--gzip"' Last-Modified: - - Thu, 03 Aug 2023 04:26:44 GMT + - Tue, 29 Aug 2023 18:33:46 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8339,13 +8152,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaQ1RAAU"},"Id":"0017e00001iaQ1RAAU","IsDeleted":false,"MasterRecordId":null,"Name":"REST - Account 2023-08-03 00:00:00 UTC","Type":null,"ParentId":null,"BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Phone":null,"Fax":null,"AccountNumber":null,"Website":null,"PhotoUrl":"/services/images/photo/0017e00001iaQ1RAAU","Sic":null,"Industry":null,"AnnualRevenue":null,"NumberOfEmployees":null,"Ownership":null,"TickerSymbol":null,"Description":null,"Rating":null,"Site":null,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-03T04:26:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-03T04:26:44.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-03T04:26:44.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-03T04:26:44.000+0000","LastReferencedDate":"2023-08-03T04:26:44.000+0000","Jigsaw":null,"JigsawCompanyId":null,"CleanStatus":"Pending","AccountSource":null,"DunsNumber":null,"Tradestyle":null,"NaicsCode":null,"NaicsDesc":null,"YearStarted":null,"SicDesc":null,"DandbCompanyId":null,"OperatingHoursId":null,"CustomerPriority__c":null,"SLA__c":null,"Active__c":null,"NumberofLocations__c":null,"UpsellOpportunity__c":null,"SLASerialNumber__c":null,"SLAExpirationDate__c":null,"SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__DefaultOpportunity__c":null,"SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__PriceHoldEnd__c":null,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","SBQQ__CoTerminationEvent__c":null,"Stripe_ID__c":"cus_ONeQtpBzdKza9Q","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ONeQtpBzdKza9Q"}' - recorded_at: Thu, 03 Aug 2023 04:27:02 GMT + string: '{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/001DE000036VQjRYAW"},"Id":"001DE000036VQjRYAW","IsDeleted":false,"MasterRecordId":null,"Name":"REST + Account 2023-08-29 00:00:00 UTC","Type":null,"ParentId":null,"BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Phone":null,"Fax":null,"AccountNumber":null,"Website":null,"PhotoUrl":"/services/images/photo/001DE000036VQjRYAW","Sic":null,"Industry":null,"AnnualRevenue":null,"NumberOfEmployees":null,"Ownership":null,"TickerSymbol":null,"Description":null,"Rating":null,"Site":null,"OwnerId":"005DE00000JiwzhYAB","CreatedDate":"2023-08-29T18:33:21.000+0000","CreatedById":"005DE00000JiwzhYAB","LastModifiedDate":"2023-08-29T18:33:46.000+0000","LastModifiedById":"005DE00000JiwzhYAB","SystemModstamp":"2023-08-29T18:33:46.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-29T18:33:45.000+0000","LastReferencedDate":"2023-08-29T18:33:45.000+0000","Jigsaw":null,"JigsawCompanyId":null,"CleanStatus":"Pending","AccountSource":null,"DunsNumber":null,"Tradestyle":null,"NaicsCode":null,"NaicsDesc":null,"YearStarted":null,"SicDesc":null,"DandbCompanyId":null,"OperatingHoursId":null,"CustomerPriority__c":null,"SLA__c":null,"Active__c":null,"NumberofLocations__c":null,"UpsellOpportunity__c":null,"SLASerialNumber__c":null,"SLAExpirationDate__c":null,"SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__DefaultOpportunity__c":null,"SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__PriceHoldEnd__c":null,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","SBQQ__CoTerminationEvent__c":null,"Stripe_ID__c":"cus_OXbxbwOxZGraDf","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OXbxbwOxZGraDf"}' + recorded_at: Tue, 29 Aug 2023 18:35:08 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONeQtpBzdKza9Q + uri: https://api.stripe.com/v1/customers/cus_OXbxbwOxZGraDf body: encoding: US-ASCII string: '' @@ -8357,13 +8170,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_LlK01RhEYqnAZq","request_duration_ms":189}}' + - '{"last_request_metrics":{"request_id":"req_O7gNSWywCuy6g5","request_duration_ms":230}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8378,11 +8191,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:02 GMT + - Tue, 29 Aug 2023 18:35:08 GMT Content-Type: - application/json Content-Length: - - '878' + - '879' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -8398,13 +8211,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_xbarUe7zEhUjEE + - req_xzIFIpgIvmHzWh Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8413,11 +8224,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONeQtpBzdKza9Q", + "id": "cus_OXbxbwOxZGraDf", "object": "customer", "address": null, "balance": 0, - "created": 1691036803, + "created": 1693334025, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -8425,7 +8236,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "8D15DF9B", + "invoice_prefix": "1540E8EA", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -8434,21 +8245,21 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaQ1RAAU", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaQ1RAAU" + "salesforce_account_id": "001DE000036VQjRYAW", + "salesforce_account_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/001DE000036VQjRYAW" }, - "name": "REST Account 2023-08-03 00:00:00 UTC", + "name": "REST Account 2023-08-29 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], "shipping": null, "tax_exempt": "none", - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW" + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe" } - recorded_at: Thu, 03 Aug 2023 04:27:02 GMT + recorded_at: Tue, 29 Aug 2023 18:35:08 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -8460,13 +8271,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_xbarUe7zEhUjEE","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_xzIFIpgIvmHzWh","request_duration_ms":250}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8481,7 +8292,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:02 GMT + - Tue, 29 Aug 2023 18:35:08 GMT Content-Type: - application/json Content-Length: @@ -8500,14 +8311,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_kP667hExCEFgPx + - req_iunVvmU1lMOYtR Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8516,22 +8335,22 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691036803, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693334025, "livemode": false, "name": null, "status": "ready" } - recorded_at: Thu, 03 Aug 2023 04:27:02 GMT + recorded_at: Tue, 29 Aug 2023 18:35:08 GMT - request: method: post - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW/advance + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe/advance body: encoding: UTF-8 - string: frozen_time=1692921600 + string: frozen_time=1695168000 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -8540,15 +8359,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_kP667hExCEFgPx","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_iunVvmU1lMOYtR","request_duration_ms":193}}' Idempotency-Key: - - dd75c833-425e-4b44-a6ed-214cf3f24c3f + - d39e0483-b7bc-4304-ab1d-6c5f614f31b8 Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8563,7 +8382,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:02 GMT + - Tue, 29 Aug 2023 18:35:09 GMT Content-Type: - application/json Content-Length: @@ -8582,180 +8401,28 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock%2Fadvance;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' Idempotency-Key: - - dd75c833-425e-4b44-a6ed-214cf3f24c3f + - d39e0483-b7bc-4304-ab1d-6c5f614f31b8 Original-Request: - - req_LJq1GFX6xx5mEE + - req_tum6BIPEucsiXN + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_LJq1GFX6xx5mEE + - req_tum6BIPEucsiXN Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Should-Retry: - 'false' Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '52.00000000000001' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode - Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload - body: - encoding: UTF-8 - string: |- - { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", - "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691036803, - "livemode": false, - "name": null, - "status": "advancing" - } - recorded_at: Thu, 03 Aug 2023 04:27:02 GMT -- request: - method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Stripe/v1 RubyBindings/7.1.0 - Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_LJq1GFX6xx5mEE","request_duration_ms":251}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Server: - - nginx - Date: - - Thu, 03 Aug 2023 04:27:03 GMT - Content-Type: - - application/json - Content-Length: - - '230' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_8FDsamKy9pECTn - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode - Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload - body: - encoding: UTF-8 - string: |- - { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", - "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691036803, - "livemode": false, - "name": null, - "status": "advancing" - } - recorded_at: Thu, 03 Aug 2023 04:27:03 GMT -- request: - method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Stripe/v1 RubyBindings/7.1.0 - Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_8FDsamKy9pECTn","request_duration_ms":159}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Server: - - nginx - Date: - - Thu, 03 Aug 2023 04:27:04 GMT - Content-Type: - - application/json - Content-Length: - - '230' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_1tRMDWWYzmw7NJ - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8764,19 +8431,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691036803, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693334025, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:04 GMT + recorded_at: Tue, 29 Aug 2023 18:35:08 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -8788,13 +8455,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_1tRMDWWYzmw7NJ","request_duration_ms":170}}' + - '{"last_request_metrics":{"request_id":"req_tum6BIPEucsiXN","request_duration_ms":288}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8809,7 +8476,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:05 GMT + - Tue, 29 Aug 2023 18:35:09 GMT Content-Type: - application/json Content-Length: @@ -8828,14 +8495,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_dphcZtxWp9gvEr + - req_CRaVe5KaAvybXP Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8844,19 +8519,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693334025, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:05 GMT + recorded_at: Tue, 29 Aug 2023 18:35:09 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -8868,13 +8543,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dphcZtxWp9gvEr","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_CRaVe5KaAvybXP","request_duration_ms":179}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8889,7 +8564,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:06 GMT + - Tue, 29 Aug 2023 18:35:10 GMT Content-Type: - application/json Content-Length: @@ -8908,14 +8583,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_yZ8omwf0pk8R3U + - req_Rx5S9lc9vPJLHM Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8924,19 +8607,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:06 GMT + recorded_at: Tue, 29 Aug 2023 18:35:10 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -8948,13 +8631,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_yZ8omwf0pk8R3U","request_duration_ms":165}}' + - '{"last_request_metrics":{"request_id":"req_Rx5S9lc9vPJLHM","request_duration_ms":201}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8969,7 +8652,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:07 GMT + - Tue, 29 Aug 2023 18:35:11 GMT Content-Type: - application/json Content-Length: @@ -8988,14 +8671,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_dDMUSvalYjOdnJ + - req_K5DpBlDbNNcybB Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9004,19 +8695,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:07 GMT + recorded_at: Tue, 29 Aug 2023 18:35:11 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9028,13 +8719,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dDMUSvalYjOdnJ","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_K5DpBlDbNNcybB","request_duration_ms":202}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9049,7 +8740,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:08 GMT + - Tue, 29 Aug 2023 18:35:12 GMT Content-Type: - application/json Content-Length: @@ -9068,14 +8759,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_N4hdGqE46A6iLx + - req_fuKqTCDPCvDnPI Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9084,19 +8783,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:08 GMT + recorded_at: Tue, 29 Aug 2023 18:35:12 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9108,13 +8807,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_N4hdGqE46A6iLx","request_duration_ms":163}}' + - '{"last_request_metrics":{"request_id":"req_fuKqTCDPCvDnPI","request_duration_ms":197}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9129,7 +8828,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:10 GMT + - Tue, 29 Aug 2023 18:35:14 GMT Content-Type: - application/json Content-Length: @@ -9148,14 +8847,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_y4HJSYi0JdxC0d + - req_r0N6emEUpUMfwH Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9164,19 +8871,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:10 GMT + recorded_at: Tue, 29 Aug 2023 18:35:13 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9188,13 +8895,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_y4HJSYi0JdxC0d","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_r0N6emEUpUMfwH","request_duration_ms":196}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9209,7 +8916,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:11 GMT + - Tue, 29 Aug 2023 18:35:15 GMT Content-Type: - application/json Content-Length: @@ -9228,14 +8935,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_OKrQpm4diKsagK + - req_d1iOzr1cGJ6Cvw Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9244,19 +8959,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:11 GMT + recorded_at: Tue, 29 Aug 2023 18:35:15 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9268,13 +8983,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_OKrQpm4diKsagK","request_duration_ms":164}}' + - '{"last_request_metrics":{"request_id":"req_d1iOzr1cGJ6Cvw","request_duration_ms":189}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9289,7 +9004,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:12 GMT + - Tue, 29 Aug 2023 18:35:16 GMT Content-Type: - application/json Content-Length: @@ -9308,14 +9023,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_DZ1YWu00mgKluV + - req_Zip2cQ1He4X92V Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9324,19 +9047,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:12 GMT + recorded_at: Tue, 29 Aug 2023 18:35:16 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9348,13 +9071,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_DZ1YWu00mgKluV","request_duration_ms":170}}' + - '{"last_request_metrics":{"request_id":"req_Zip2cQ1He4X92V","request_duration_ms":194}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9369,7 +9092,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:13 GMT + - Tue, 29 Aug 2023 18:35:17 GMT Content-Type: - application/json Content-Length: @@ -9388,14 +9111,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_wjTKEmNgu7xAKM + - req_usDzyIsJle5RS2 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9404,19 +9135,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:13 GMT + recorded_at: Tue, 29 Aug 2023 18:35:17 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9428,13 +9159,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_wjTKEmNgu7xAKM","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_usDzyIsJle5RS2","request_duration_ms":193}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9449,7 +9180,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:14 GMT + - Tue, 29 Aug 2023 18:35:18 GMT Content-Type: - application/json Content-Length: @@ -9468,14 +9199,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_dz6Jaznh3oRTJ6 + - req_T7DjY9LfWG7Ctk Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9484,19 +9223,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:14 GMT + recorded_at: Tue, 29 Aug 2023 18:35:18 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9508,13 +9247,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dz6Jaznh3oRTJ6","request_duration_ms":174}}' + - '{"last_request_metrics":{"request_id":"req_T7DjY9LfWG7Ctk","request_duration_ms":186}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9529,7 +9268,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:15 GMT + - Tue, 29 Aug 2023 18:35:20 GMT Content-Type: - application/json Content-Length: @@ -9548,14 +9287,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_UJBK2Tua01dioV + - req_PkzCyzvSJCqcv8 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9564,19 +9311,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691040403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:15 GMT + recorded_at: Tue, 29 Aug 2023 18:35:19 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9588,13 +9335,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_UJBK2Tua01dioV","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_PkzCyzvSJCqcv8","request_duration_ms":185}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9609,7 +9356,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:17 GMT + - Tue, 29 Aug 2023 18:35:21 GMT Content-Type: - application/json Content-Length: @@ -9628,14 +9375,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_WkBJXa6y9kkxrb + - req_6ZBiWzWeSz8Ccl Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9644,19 +9399,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691299603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:17 GMT + recorded_at: Tue, 29 Aug 2023 18:35:21 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9668,13 +9423,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_WkBJXa6y9kkxrb","request_duration_ms":187}}' + - '{"last_request_metrics":{"request_id":"req_6ZBiWzWeSz8Ccl","request_duration_ms":187}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9689,7 +9444,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:18 GMT + - Tue, 29 Aug 2023 18:35:22 GMT Content-Type: - application/json Content-Length: @@ -9708,14 +9463,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_mlHPihzVFR1GXF + - req_gWHcNY9EE1Vmnr Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9724,19 +9487,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691299603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:18 GMT + recorded_at: Tue, 29 Aug 2023 18:35:22 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9748,13 +9511,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_mlHPihzVFR1GXF","request_duration_ms":161}}' + - '{"last_request_metrics":{"request_id":"req_gWHcNY9EE1Vmnr","request_duration_ms":189}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9769,7 +9532,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:19 GMT + - Tue, 29 Aug 2023 18:35:23 GMT Content-Type: - application/json Content-Length: @@ -9788,14 +9551,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_GwKjn2ChGgtWap + - req_zETBTsjrBqUrU3 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9804,19 +9575,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691299603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:19 GMT + recorded_at: Tue, 29 Aug 2023 18:35:23 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9828,13 +9599,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_GwKjn2ChGgtWap","request_duration_ms":176}}' + - '{"last_request_metrics":{"request_id":"req_zETBTsjrBqUrU3","request_duration_ms":190}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9849,7 +9620,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:20 GMT + - Tue, 29 Aug 2023 18:35:24 GMT Content-Type: - application/json Content-Length: @@ -9868,14 +9639,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_YnIgwCWLtPhdTR + - req_so7yBmXLHemjqe Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9884,19 +9663,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691299603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693337625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:20 GMT + recorded_at: Tue, 29 Aug 2023 18:35:24 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9908,13 +9687,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_YnIgwCWLtPhdTR","request_duration_ms":163}}' + - '{"last_request_metrics":{"request_id":"req_so7yBmXLHemjqe","request_duration_ms":192}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9929,7 +9708,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:21 GMT + - Tue, 29 Aug 2023 18:35:25 GMT Content-Type: - application/json Content-Length: @@ -9948,14 +9727,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_V7upK1aybAqH5u + - req_dDTLRtqbM0aofc Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9964,19 +9751,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691731603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693596825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:21 GMT + recorded_at: Tue, 29 Aug 2023 18:35:25 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -9988,13 +9775,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_V7upK1aybAqH5u","request_duration_ms":172}}' + - '{"last_request_metrics":{"request_id":"req_dDTLRtqbM0aofc","request_duration_ms":197}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10009,7 +9796,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:23 GMT + - Tue, 29 Aug 2023 18:35:27 GMT Content-Type: - application/json Content-Length: @@ -10028,14 +9815,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_RRzMiOXu1od6CF + - req_w9e1j6HmvVTZdr Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10044,19 +9839,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691731603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693596825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:22 GMT + recorded_at: Tue, 29 Aug 2023 18:35:27 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10068,13 +9863,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_RRzMiOXu1od6CF","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_w9e1j6HmvVTZdr","request_duration_ms":187}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10089,7 +9884,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:24 GMT + - Tue, 29 Aug 2023 18:35:28 GMT Content-Type: - application/json Content-Length: @@ -10108,14 +9903,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_fn338wJzl07Ku0 + - req_OdWR6aKy8aXY6m Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10124,19 +9927,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691731603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693596825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:24 GMT + recorded_at: Tue, 29 Aug 2023 18:35:28 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10148,13 +9951,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fn338wJzl07Ku0","request_duration_ms":163}}' + - '{"last_request_metrics":{"request_id":"req_OdWR6aKy8aXY6m","request_duration_ms":194}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10169,7 +9972,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:25 GMT + - Tue, 29 Aug 2023 18:35:29 GMT Content-Type: - application/json Content-Length: @@ -10188,14 +9991,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_GXu8EVBpWqCA8D + - req_8K2rdJMrbW3l3T Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10204,19 +10015,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691731603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693596825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:25 GMT + recorded_at: Tue, 29 Aug 2023 18:35:29 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10228,13 +10039,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_GXu8EVBpWqCA8D","request_duration_ms":158}}' + - '{"last_request_metrics":{"request_id":"req_8K2rdJMrbW3l3T","request_duration_ms":180}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10249,7 +10060,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:26 GMT + - Tue, 29 Aug 2023 18:35:30 GMT Content-Type: - application/json Content-Length: @@ -10268,14 +10079,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_vE6KnSLXRPjCTE + - req_pZxesHELJQgJ0j Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10284,19 +10103,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691731603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1693596825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:26 GMT + recorded_at: Tue, 29 Aug 2023 18:35:30 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10308,13 +10127,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_vE6KnSLXRPjCTE","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_pZxesHELJQgJ0j","request_duration_ms":179}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10329,7 +10148,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:27 GMT + - Tue, 29 Aug 2023 18:35:31 GMT Content-Type: - application/json Content-Length: @@ -10348,14 +10167,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_y51nONi2kVWshY + - req_TqY5aZuL4HJ7bu Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10364,19 +10191,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1691731603, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694028825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:27 GMT + recorded_at: Tue, 29 Aug 2023 18:35:31 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10388,13 +10215,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_y51nONi2kVWshY","request_duration_ms":177}}' + - '{"last_request_metrics":{"request_id":"req_TqY5aZuL4HJ7bu","request_duration_ms":181}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10409,7 +10236,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:28 GMT + - Tue, 29 Aug 2023 18:35:33 GMT Content-Type: - application/json Content-Length: @@ -10428,14 +10255,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_2nilEmT4OAbEtS + - req_WBc8uznDCH5NQ0 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10444,19 +10279,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692336403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694028825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:28 GMT + recorded_at: Tue, 29 Aug 2023 18:35:33 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10468,13 +10303,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_2nilEmT4OAbEtS","request_duration_ms":199}}' + - '{"last_request_metrics":{"request_id":"req_WBc8uznDCH5NQ0","request_duration_ms":182}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10489,7 +10324,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:30 GMT + - Tue, 29 Aug 2023 18:35:34 GMT Content-Type: - application/json Content-Length: @@ -10508,14 +10343,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_RuaOo30HP29tlf + - req_AHyatlSdsitQnX Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10524,19 +10367,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692336403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694028825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:30 GMT + recorded_at: Tue, 29 Aug 2023 18:35:34 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10548,13 +10391,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_RuaOo30HP29tlf","request_duration_ms":173}}' + - '{"last_request_metrics":{"request_id":"req_AHyatlSdsitQnX","request_duration_ms":192}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10569,7 +10412,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:31 GMT + - Tue, 29 Aug 2023 18:35:35 GMT Content-Type: - application/json Content-Length: @@ -10588,14 +10431,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_vQDQJALVXqdtqA + - req_YxrLNJBzdthkln Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10604,19 +10455,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692336403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694028825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:31 GMT + recorded_at: Tue, 29 Aug 2023 18:35:35 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10628,13 +10479,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_vQDQJALVXqdtqA","request_duration_ms":167}}' + - '{"last_request_metrics":{"request_id":"req_YxrLNJBzdthkln","request_duration_ms":179}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10649,7 +10500,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:32 GMT + - Tue, 29 Aug 2023 18:35:36 GMT Content-Type: - application/json Content-Length: @@ -10668,14 +10519,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_zOcP6lzC9JJ1yT + - req_d0tJo11fRoO985 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10684,19 +10543,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692336403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694028825, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:32 GMT + recorded_at: Tue, 29 Aug 2023 18:35:36 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10708,13 +10567,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_zOcP6lzC9JJ1yT","request_duration_ms":158}}' + - '{"last_request_metrics":{"request_id":"req_d0tJo11fRoO985","request_duration_ms":206}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10729,7 +10588,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:33 GMT + - Tue, 29 Aug 2023 18:35:37 GMT Content-Type: - application/json Content-Length: @@ -10748,14 +10607,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_cddtj9pMnryyPx + - req_8iOqjuH2NVfLiF Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10764,19 +10631,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692336403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694633625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:33 GMT + recorded_at: Tue, 29 Aug 2023 18:35:37 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10788,13 +10655,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_cddtj9pMnryyPx","request_duration_ms":164}}' + - '{"last_request_metrics":{"request_id":"req_8iOqjuH2NVfLiF","request_duration_ms":189}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10809,7 +10676,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:34 GMT + - Tue, 29 Aug 2023 18:35:39 GMT Content-Type: - application/json Content-Length: @@ -10828,14 +10695,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_ZUu28Ug4d6Bff3 + - req_SGafVKN3rzSAfl Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10844,19 +10719,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692336403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694633625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:34 GMT + recorded_at: Tue, 29 Aug 2023 18:35:38 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10868,13 +10743,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ZUu28Ug4d6Bff3","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_SGafVKN3rzSAfl","request_duration_ms":192}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10889,7 +10764,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:35 GMT + - Tue, 29 Aug 2023 18:35:40 GMT Content-Type: - application/json Content-Length: @@ -10908,14 +10783,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_V0MbvOeZcMxIq4 + - req_wJoP1A58RYLHhv Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10924,19 +10807,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692336403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694633625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:35 GMT + recorded_at: Tue, 29 Aug 2023 18:35:40 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -10948,13 +10831,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_V0MbvOeZcMxIq4","request_duration_ms":168}}' + - '{"last_request_metrics":{"request_id":"req_wJoP1A58RYLHhv","request_duration_ms":182}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10969,7 +10852,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:37 GMT + - Tue, 29 Aug 2023 18:35:41 GMT Content-Type: - application/json Content-Length: @@ -10988,14 +10871,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_VEsffADV6CyrOM + - req_91Lmyry0IpO0jr Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11004,19 +10895,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692336403, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694633625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:37 GMT + recorded_at: Tue, 29 Aug 2023 18:35:41 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -11028,13 +10919,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_VEsffADV6CyrOM","request_duration_ms":165}}' + - '{"last_request_metrics":{"request_id":"req_91Lmyry0IpO0jr","request_duration_ms":188}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11049,7 +10940,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:38 GMT + - Tue, 29 Aug 2023 18:35:42 GMT Content-Type: - application/json Content-Length: @@ -11068,14 +10959,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_fz4OecX64Forei + - req_bnATUP8P78nPx7 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11084,19 +10983,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692748800, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694633625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:38 GMT + recorded_at: Tue, 29 Aug 2023 18:35:42 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -11108,13 +11007,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fz4OecX64Forei","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_bnATUP8P78nPx7","request_duration_ms":179}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11129,7 +11028,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:39 GMT + - Tue, 29 Aug 2023 18:35:43 GMT Content-Type: - application/json Content-Length: @@ -11148,14 +11047,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_HITjOlIZH3zDfb + - req_Qe6tmI5dSwXVpY Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11164,19 +11071,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692748800, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694633625, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:39 GMT + recorded_at: Tue, 29 Aug 2023 18:35:43 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -11188,13 +11095,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_HITjOlIZH3zDfb","request_duration_ms":181}}' + - '{"last_request_metrics":{"request_id":"req_Qe6tmI5dSwXVpY","request_duration_ms":188}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11209,7 +11116,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:40 GMT + - Tue, 29 Aug 2023 18:35:45 GMT Content-Type: - application/json Content-Length: @@ -11228,14 +11135,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_70dPF6p3Vd5ZfL + - req_Yt03cQsd6VubV7 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11244,19 +11159,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692748800, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694995200, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:40 GMT + recorded_at: Tue, 29 Aug 2023 18:35:44 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -11268,13 +11183,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_70dPF6p3Vd5ZfL","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_Yt03cQsd6VubV7","request_duration_ms":195}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11289,7 +11204,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:41 GMT + - Tue, 29 Aug 2023 18:35:46 GMT Content-Type: - application/json Content-Length: @@ -11308,14 +11223,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_6RappkcoAUGtpp + - req_1EtbLxD4BoEiIR Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11324,19 +11247,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692748800, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694995200, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:41 GMT + recorded_at: Tue, 29 Aug 2023 18:35:46 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -11348,13 +11271,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_6RappkcoAUGtpp","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_1EtbLxD4BoEiIR","request_duration_ms":193}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11369,7 +11292,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:42 GMT + - Tue, 29 Aug 2023 18:35:47 GMT Content-Type: - application/json Content-Length: @@ -11388,14 +11311,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_W7c98MAcUWGzVi + - req_LClutdl62ySdzc Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11404,19 +11335,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692748800, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694995200, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:42 GMT + recorded_at: Tue, 29 Aug 2023 18:35:47 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -11428,13 +11359,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_W7c98MAcUWGzVi","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_LClutdl62ySdzc","request_duration_ms":184}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11449,7 +11380,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:44 GMT + - Tue, 29 Aug 2023 18:35:48 GMT Content-Type: - application/json Content-Length: @@ -11468,14 +11399,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_4PT6yZd92WtxQD + - req_ebpbJlKIAspqsO Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11484,19 +11423,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692748800, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694995200, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:44 GMT + recorded_at: Tue, 29 Aug 2023 18:35:48 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -11508,13 +11447,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_4PT6yZd92WtxQD","request_duration_ms":181}}' + - '{"last_request_metrics":{"request_id":"req_ebpbJlKIAspqsO","request_duration_ms":196}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11529,7 +11468,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:45 GMT + - Tue, 29 Aug 2023 18:35:49 GMT Content-Type: - application/json Content-Length: @@ -11548,14 +11487,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_o440yxi63xTh9z + - req_WushPX3vAwGIBL Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11564,19 +11511,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692748800, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694995200, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:45 GMT + recorded_at: Tue, 29 Aug 2023 18:35:49 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -11588,13 +11535,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_o440yxi63xTh9z","request_duration_ms":177}}' + - '{"last_request_metrics":{"request_id":"req_WushPX3vAwGIBL","request_duration_ms":189}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11609,7 +11556,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:46 GMT + - Tue, 29 Aug 2023 18:35:50 GMT Content-Type: - application/json Content-Length: @@ -11628,14 +11575,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_9IaTCAaDvsA7rX + - req_QqQGmC6dp6wNl2 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11644,19 +11599,19 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692748800, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1694995200, "livemode": false, "name": null, "status": "advancing" } - recorded_at: Thu, 03 Aug 2023 04:27:46 GMT + recorded_at: Tue, 29 Aug 2023 18:35:50 GMT - request: method: get - uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1Nat7XIsgf92XbAODF4TMJrW + uri: https://api.stripe.com/v1/test_helpers/test_clocks/clock_1NkWjVIsgf92XbAOgV49UfBe body: encoding: US-ASCII string: '' @@ -11668,13 +11623,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_9IaTCAaDvsA7rX","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_QqQGmC6dp6wNl2","request_duration_ms":184}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11689,7 +11644,7 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:47 GMT + - Tue, 29 Aug 2023 18:35:52 GMT Content-Type: - application/json Content-Length: @@ -11708,14 +11663,22 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Ftest_helpers%2Ftest_clocks%2F%3Atest_clock;block-all-mixed-content;default-src + 'none' 'report-sample';base-uri 'none';form-action 'none';style-src 'unsafe-inline';frame-ancestors + 'self';connect-src 'self';img-src 'self' https://b.stripecdn.com + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_a7sfjvNbXj1YGU + - req_dSuO8CQB9BJ6OY Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '0.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11724,16 +11687,16 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "id": "clock_1NkWjVIsgf92XbAOgV49UfBe", "object": "test_helpers.test_clock", - "created": 1691036803, - "deletes_after": 1693628803, - "frozen_time": 1692921600, + "created": 1693334025, + "deletes_after": 1695926025, + "frozen_time": 1695168000, "livemode": false, "name": null, "status": "ready" } - recorded_at: Thu, 03 Aug 2023 04:27:47 GMT + recorded_at: Tue, 29 Aug 2023 18:35:52 GMT - request: method: get uri: https://api.stripe.com/v1/events?type=invoiceitem.created @@ -11748,13 +11711,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_a7sfjvNbXj1YGU","request_duration_ms":167}}' + - '{"last_request_metrics":{"request_id":"req_dSuO8CQB9BJ6OY","request_duration_ms":203}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT + 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11769,11 +11732,11 @@ http_interactions: Server: - nginx Date: - - Thu, 03 Aug 2023 04:27:47 GMT + - Tue, 29 Aug 2023 18:35:52 GMT Content-Type: - application/json Content-Length: - - '32677' + - '32871' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -11789,13 +11752,11 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_OrmBKDwFOS43Jn + - req_5KcishI3Pqswaf Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' - X-Stripe-Api-Exec-And-Lock-Wait-Duration-Ms: - - '36.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11807,40 +11768,40 @@ http_interactions: "object": "list", "data": [ { - "id": "evt_1Nat8RIsgf92XbAOSC6bu1No", + "id": "evt_1NkWlTIsgf92XbAO49Cpqyjr", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691036859, + "created": 1693334147, "data": { "object": { - "id": "ii_1Nat8RIsgf92XbAOpUuCoDnG", + "id": "ii_1NkWlSIsgf92XbAObzAblcbE", "object": "invoiceitem", "amount": 4468, "currency": "usd", - "customer": "cus_ONeQtpBzdKza9Q", - "date": 1692748800, - "description": "REST Product2 2023-08-03 00:00:00 UTC", + "customer": "cus_OXbxbwOxZGraDf", + "date": 1694995200, + "description": "REST Product2 2023-08-29 00:00:00 UTC", "discountable": true, "discounts": [], "invoice": null, "livemode": false, "metadata": { - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", "salesforce_proration": "true" }, "period": { - "end": 1706918400, - "start": 1692748800 + "end": 1709164800, + "start": 1694995200 }, "plan": null, "price": { - "id": "price_1Nat7mIsgf92XbAONS0Hm4Cg", + "id": "price_1NkWknIsgf92XbAOrFWRqNFE", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691036818, + "created": 1693334105, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -11848,13 +11809,13 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_order_item_id": "8027e000001bQsOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsOAAU", - "salesforce_original_stripe_price_id": "price_1Nat7kIsgf92XbAOzhCKC3lC", + "salesforce_order_item_id": "802DE00000Ay2beYAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2beYAB", + "salesforce_original_stripe_price_id": "price_1NkWklIsgf92XbAOaRcorpUF", "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, @@ -11865,9 +11826,9 @@ http_interactions: }, "proration": false, "quantity": 1, - "subscription": "sub_1Nat7fIsgf92XbAODFz16VSQ", + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", "tax_rates": [], - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW", + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe", "unit_amount": null, "unit_amount_decimal": "4468.028145889527" } @@ -11881,71 +11842,69 @@ http_interactions: "type": "invoiceitem.created" }, { - "id": "evt_1Nat7fIsgf92XbAO5HNNzrpU", + "id": "evt_1NkWkGIsgf92XbAOINT5nu1L", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691036811, + "created": 1693334072, "data": { "object": { - "id": "ii_1Nat7fIsgf92XbAO4TwqKvVw", + "id": "ii_1NkWkFIsgf92XbAOdWA53l8G", "object": "invoiceitem", - "amount": 5000, + "amount": 10000, "currency": "usd", - "customer": "cus_ONeQtpBzdKza9Q", - "date": 1691036803, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Feb 2024", + "customer": "cus_OXbxbwOxZGraDf", + "date": 1693334025, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Feb 2024", "discountable": false, "discounts": [], - "invoice": "in_1Nat7fIsgf92XbAOrviaCpRt", + "invoice": "in_1NkWkFIsgf92XbAOhx4eedV8", "livemode": false, "metadata": {}, "period": { - "end": 1706918400, - "start": 1691020800 + "end": 1709164800, + "start": 1693267200 }, "plan": { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 5000, - "amount_decimal": "5000", + "amount": 10000, + "amount_decimal": "10000", "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "interval": "month", "interval_count": 6, "livemode": false, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1Nat7dIsgf92XbAOc6B15r5V", + "id": "price_1NkWkEIsgf92XbAOncznmXHX", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036809, + "created": 1693334070, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_auto_archive": "true", - "salesforce_order_item_id": "8027e000001bQsEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQsEAAU" + "salesforce_pricebook_entry_id": "01uDE00000KVlM1YAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlM1YAL" }, "nickname": null, - "product": "prod_ONeQax9jJ1hT1Q", + "product": "prod_OXbxSDZ1lrlTIx", "recurring": { "aggregate_usage": null, "interval": "month", @@ -11957,91 +11916,93 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "unit_amount": 10000, + "unit_amount_decimal": "10000" }, "proration": true, "quantity": 1, - "subscription": "sub_1Nat7fIsgf92XbAODFz16VSQ", - "subscription_item": "si_ONeQsnpNMgP2SW", + "subscription": "sub_1NkWkFIsgf92XbAOdANRasxN", + "subscription_item": "si_OXbyV4NToLkqCk", "tax_rates": [], - "test_clock": "clock_1Nat7XIsgf92XbAODF4TMJrW", - "unit_amount": 5000, - "unit_amount_decimal": "5000" + "test_clock": "clock_1NkWjVIsgf92XbAOgV49UfBe", + "unit_amount": 10000, + "unit_amount_decimal": "10000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_x6qUBLl8rBPcf3", - "idempotency_key": "91a85222-a6ed-4457-9df0-7d2ffee3c967" + "id": "req_FIakSozkRVcBbk", + "idempotency_key": "83613824-d153-4604-87f4-3dc104958c89" }, "type": "invoiceitem.created" }, { - "id": "evt_1Nat6SIsgf92XbAOddHEPr5d", + "id": "evt_1NkWduIsgf92XbAOMkZF2GJY", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691036735, + "created": 1693333676, "data": { "object": { - "id": "ii_1Nat6RIsgf92XbAOxuKtjMPG", + "id": "ii_1NkWdsIsgf92XbAOEKqcTpFZ", "object": "invoiceitem", - "amount": 12000, + "amount": 107000, "currency": "usd", - "customer": "cus_ONeP9Ui2Fd1ZkH", - "date": 1691036728, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Sep 2023", + "customer": "cus_OXbr4U9Qsq9wVs", + "date": 1693333676, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC (with discounts) from 29 Aug 2023 until 29 Sep 2023", "discountable": false, "discounts": [], - "invoice": "in_1Nat6RIsgf92XbAOxmks9L6v", + "invoice": "in_1NkWdsIsgf92XbAOirMHlEZc", "livemode": false, "metadata": {}, "period": { - "end": 1693699200, - "start": 1691020800 + "end": 1695945600, + "start": 1693267200 }, "plan": { - "id": "price_1Nat6QIsgf92XbAOuMg1anEv", + "id": "price_1NkWdnIsgf92XbAOa0jH3dcD", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 12000, - "amount_decimal": "12000", + "amount": 144000, + "amount_decimal": "144000", "billing_scheme": "per_unit", - "created": 1691036734, + "created": 1693333671, "currency": "usd", "interval": "month", "interval_count": 1, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isk3uAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isk3uAAB" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bQYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bQYAR" }, "nickname": null, - "product": "prod_ONePPQdmPR2sFi", + "product": "prod_OXbrDTtzZz0PkG", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1Nat6QIsgf92XbAOuMg1anEv", + "id": "price_1NkWdnIsgf92XbAOa0jH3dcD", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036734, + "created": 1693333671, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isk3uAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isk3uAAB" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bQYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bQYAR" }, "nickname": null, - "product": "prod_ONePPQdmPR2sFi", + "product": "prod_OXbrDTtzZz0PkG", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12053,95 +12014,97 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 12000, - "unit_amount_decimal": "12000" + "unit_amount": 144000, + "unit_amount_decimal": "144000" }, "proration": true, "quantity": 1, - "subscription": "sub_1Nat6RIsgf92XbAOcqzfdnFJ", - "subscription_item": "si_ONePgoBGNhlECs", + "subscription": "sub_1NkWdsIsgf92XbAO7SrGW4lQ", + "subscription_item": "si_OXbrS7yhDvoJPr", "tax_rates": [], - "test_clock": "clock_1Nat6LIsgf92XbAOPN6PAJbi", - "unit_amount": 12000, - "unit_amount_decimal": "12000" + "test_clock": null, + "unit_amount": 107000, + "unit_amount_decimal": "107000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_hdBvTV5oBsZXTx", - "idempotency_key": "e34b7ec2-5c5c-47d3-96a2-7b16f2f3217e" + "id": "req_lPiZvFhl3N5JNs", + "idempotency_key": "3ee96189-4c46-4663-8733-955dcda2607c" }, "type": "invoiceitem.created" }, { - "id": "evt_1Nat5ZIsgf92XbAO79waww7x", + "id": "evt_1NkWd4Isgf92XbAOFBHnK3Qx", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691036681, + "created": 1693333625, "data": { "object": { - "id": "ii_1Nat5ZIsgf92XbAOSqRuvKC7", + "id": "ii_1NkWd3Isgf92XbAOFyVItWGd", "object": "invoiceitem", - "amount": 12000, + "amount": 144000, "currency": "usd", - "customer": "cus_ONeOszU7e5SRbA", - "date": 1691036674, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 Aug 2024", + "customer": "cus_OXbqmhIkfU9CKw", + "date": 1693333625, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Sep 2023", "discountable": false, "discounts": [], - "invoice": "in_1Nat5ZIsgf92XbAOzpW5n6BN", + "invoice": "in_1NkWd3Isgf92XbAOUwAS35RD", "livemode": false, "metadata": {}, "period": { - "end": 1722643200, - "start": 1691020800 + "end": 1695945600, + "start": 1693267200 }, "plan": { - "id": "price_1Nat5XIsgf92XbAOrO7dwY9I", + "id": "price_1NkWcyIsgf92XbAO3cBXtnWi", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 12000, - "amount_decimal": "12000", + "amount": 144000, + "amount_decimal": "144000", "billing_scheme": "per_unit", - "created": 1691036679, + "created": 1693333620, "currency": "usd", "interval": "month", - "interval_count": 12, + "interval_count": 1, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjzUAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjzUAAR" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bKYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bKYAR" }, "nickname": null, - "product": "prod_ONeOG0NTOqgBOh", + "product": "prod_OXbqepaPHogYmb", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1Nat5XIsgf92XbAOrO7dwY9I", + "id": "price_1NkWcyIsgf92XbAO3cBXtnWi", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691036679, + "created": 1693333620, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjzUAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjzUAAR" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bKYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bKYAR" }, "nickname": null, - "product": "prod_ONeOG0NTOqgBOh", + "product": "prod_OXbqepaPHogYmb", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 12, + "interval_count": 1, "trial_period_days": null, "usage_type": "licensed" }, @@ -12149,97 +12112,97 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 12000, - "unit_amount_decimal": "12000" + "unit_amount": 144000, + "unit_amount_decimal": "144000" }, "proration": true, "quantity": 1, - "subscription": "sub_1Nat5ZIsgf92XbAOxbuwU2in", - "subscription_item": "si_ONeOXhkGyLKS7H", + "subscription": "sub_1NkWd3Isgf92XbAOLGCH4TUy", + "subscription_item": "si_OXbqlmBzqHxWko", "tax_rates": [], - "test_clock": "clock_1Nat5SIsgf92XbAOKJUdqMxw", - "unit_amount": 12000, - "unit_amount_decimal": "12000" + "test_clock": null, + "unit_amount": 144000, + "unit_amount_decimal": "144000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_IMfdo9d3XckhI0", - "idempotency_key": "65b34dae-c6db-4c2b-9e1e-b1e9f9673dc0" + "id": "req_nQGwTMAkL01pMz", + "idempotency_key": "042349da-5545-41af-9971-d527773d128b" }, "type": "invoiceitem.created" }, { - "id": "evt_1NaspUIsgf92XbAORMIAlXpK", + "id": "evt_1NkWcfIsgf92XbAOd44rZFtK", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691035683, + "created": 1693333600, "data": { "object": { - "id": "ii_1NaspTIsgf92XbAOgSxMqatw", + "id": "ii_1NkWceIsgf92XbAOmu2eafz3", "object": "invoiceitem", - "amount": 67377, + "amount": 144000, "currency": "usd", - "customer": "cus_ONe7kUt43mtDmm", - "date": 1691035683, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 May 2024", + "customer": "cus_OXbqdCp2D3g9VQ", + "date": 1693333600, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Sep 2023", "discountable": false, "discounts": [], - "invoice": "in_1NaspTIsgf92XbAO7Kui9LGI", + "invoice": "in_1NkWceIsgf92XbAOofELXOqn", "livemode": false, "metadata": {}, "period": { - "end": 1714694400, - "start": 1691020800 + "end": 1695945600, + "start": 1693267200 }, "plan": { - "id": "price_1NaspPIsgf92XbAObPaWqGMC", + "id": "price_1NkWcVIsgf92XbAO8Lx1HmiZ", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 90000, - "amount_decimal": "90000", + "amount": 144000, + "amount_decimal": "144000", "billing_scheme": "per_unit", - "created": 1691035679, + "created": 1693333591, "currency": "usd", "interval": "month", - "interval_count": 12, + "interval_count": 1, "livemode": false, "metadata": { - "salesforce_frontend_proration": "true", - "salesforce_pricebook_entry_id": "01u7e00000IsjwkAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjwkAAB" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bFYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bFYAR" }, "nickname": null, - "product": "prod_ONe7JiEIc6nK2d", + "product": "prod_OXbqVl4u7lzaVp", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NaspPIsgf92XbAObPaWqGMC", + "id": "price_1NkWcVIsgf92XbAO8Lx1HmiZ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691035679, + "created": 1693333591, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_frontend_proration": "true", - "salesforce_pricebook_entry_id": "01u7e00000IsjwkAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjwkAAB" + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "802DE00000Ay2bFYAR", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2bFYAR" }, "nickname": null, - "product": "prod_ONe7JiEIc6nK2d", + "product": "prod_OXbqVl4u7lzaVp", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 12, + "interval_count": 1, "trial_period_days": null, "usage_type": "licensed" }, @@ -12247,164 +12210,169 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 90000, - "unit_amount_decimal": "90000" + "unit_amount": 144000, + "unit_amount_decimal": "144000" }, "proration": true, "quantity": 1, - "subscription": "sub_1NaspTIsgf92XbAO8HAjNByS", - "subscription_item": "si_ONe7Qm4IF7UlvS", + "subscription": "sub_1NkWceIsgf92XbAOH3geTAA7", + "subscription_item": "si_OXbqnZYVuwQJNo", "tax_rates": [], "test_clock": null, - "unit_amount": 67377, - "unit_amount_decimal": "67377" + "unit_amount": 144000, + "unit_amount_decimal": "144000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_RMJBoFtPwQGomT", - "idempotency_key": "0a92f4c5-6a5f-4d13-95f0-e46f9f3ca1be" + "id": "req_eU9znZVB6VRWDD", + "idempotency_key": "57accbcf-7216-4277-b582-d54457cd211f" }, "type": "invoiceitem.created" }, { - "id": "evt_1NaspUIsgf92XbAOsIIFqWLt", + "id": "evt_1NkUSsIsgf92XbAOy5PUh83i", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691035683, + "created": 1693325305, "data": { "object": { - "id": "ii_1NaspTIsgf92XbAO7AnPa3R0", + "id": "ii_1NkUSrIsgf92XbAOXUc09gmu", "object": "invoiceitem", - "amount": 10000, + "amount": 72000, "currency": "usd", - "customer": "cus_ONe7kUt43mtDmm", - "date": 1691035683, - "description": "REST Product2 2023-08-03 00:00:00 UTC", + "customer": "cus_OXZbWSuD9xMVaq", + "date": 1693325305, + "description": "REST Product2 2023-08-29 00:00:00 UTC", "discountable": true, "discounts": [], - "invoice": "in_1NaspTIsgf92XbAO7Kui9LGI", + "invoice": null, "livemode": false, "metadata": { - "salesforce_order_item_id": "8027e000001bQrRAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQrRAAU" + "salesforce_order_item_id": "802DE00000Ay2b0YAB", + "salesforce_order_item_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/802DE00000Ay2b0YAB", + "salesforce_proration": "true" }, "period": { - "end": 1714694400, - "start": 1691035683 + "end": 1695686400, + "start": 1687737600 }, "plan": null, "price": { - "id": "price_1NaspSIsgf92XbAOeowcS2PY", + "id": "price_1NkUSqIsgf92XbAOHxEKzmbc", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691035682, + "created": 1693325304, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjzTAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjzTAAR" + "salesforce_auto_archive": "true", + "salesforce_duplicate": "true", + "salesforce_original_stripe_price_id": "price_1NkUSnIsgf92XbAOWJvU56m3", + "salesforce_pricebook_entry_id": "01uDE00000KVlJpYAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJpYAL", + "salesforce_proration": "true" }, "nickname": null, - "product": "prod_ONe7qN5Vg6TsrC", + "product": "prod_OXZbQxIUAALIc3", "recurring": null, "tax_behavior": "unspecified", "tiers_mode": null, "transform_quantity": null, "type": "one_time", - "unit_amount": 10000, - "unit_amount_decimal": "10000" + "unit_amount": 36000, + "unit_amount_decimal": "36000" }, "proration": false, - "quantity": 1, - "subscription": "sub_1NaspTIsgf92XbAO8HAjNByS", + "quantity": 2, + "subscription": "sub_1NkUSbIsgf92XbAOJ17RDHzp", "tax_rates": [], "test_clock": null, - "unit_amount": 10000, - "unit_amount_decimal": "10000" + "unit_amount": 36000, + "unit_amount_decimal": "36000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_RMJBoFtPwQGomT", - "idempotency_key": "0a92f4c5-6a5f-4d13-95f0-e46f9f3ca1be" + "id": "req_1rfTotrKTJ4Mgk", + "idempotency_key": "22317871-20a6-469f-b641-eefcec5b5754" }, "type": "invoiceitem.created" }, { - "id": "evt_1NasogIsgf92XbAOTrhByZsK", + "id": "evt_1NkUScIsgf92XbAOTQp472jO", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691035633, + "created": 1693325289, "data": { "object": { - "id": "ii_1NasofIsgf92XbAOjVTh5vXA", + "id": "ii_1NkUSbIsgf92XbAOwYkVzwmW", "object": "invoiceitem", - "amount": 89836, + "amount": 48000, "currency": "usd", - "customer": "cus_ONe6vyBv2pbKeA", - "date": 1691035633, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 May 2024", + "customer": "cus_OXZbWSuD9xMVaq", + "date": 1693325289, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 26 May 2023 until 26 Sep 2023", "discountable": false, "discounts": [], - "invoice": "in_1NasofIsgf92XbAOID8qbj5R", + "invoice": "in_1NkUSbIsgf92XbAOchXxBynf", "livemode": false, "metadata": {}, "period": { - "end": 1714694400, - "start": 1691020800 + "end": 1695686400, + "start": 1685059200 }, "plan": { - "id": "price_1NasoeIsgf92XbAOLHlIcA66", + "id": "price_1NkUSZIsgf92XbAO2EioOjIE", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 120000, - "amount_decimal": "120000", + "amount": 12000, + "amount_decimal": "12000", "billing_scheme": "per_unit", - "created": 1691035632, + "created": 1693325287, "currency": "usd", "interval": "month", - "interval_count": 12, + "interval_count": 1, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjzOAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjzOAAR" + "salesforce_pricebook_entry_id": "01uDE00000KVlJpYAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJpYAL" }, "nickname": null, - "product": "prod_ONe6UM6vdF53yC", + "product": "prod_OXZbQxIUAALIc3", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NasoeIsgf92XbAOLHlIcA66", + "id": "price_1NkUSZIsgf92XbAO2EioOjIE", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691035632, + "created": 1693325287, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjzOAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjzOAAR" + "salesforce_pricebook_entry_id": "01uDE00000KVlJpYAL", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJpYAL" }, "nickname": null, - "product": "prod_ONe6UM6vdF53yC", + "product": "prod_OXZbQxIUAALIc3", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 12, + "interval_count": 1, "trial_period_days": null, "usage_type": "licensed" }, @@ -12412,93 +12380,91 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 120000, - "unit_amount_decimal": "120000" + "unit_amount": 12000, + "unit_amount_decimal": "12000" }, "proration": true, "quantity": 1, - "subscription": "sub_1NasofIsgf92XbAOM8Q7g9cA", - "subscription_item": "si_ONe6yXZkdoa2mq", + "subscription": "sub_1NkUSbIsgf92XbAOJ17RDHzp", + "subscription_item": "si_OXZbjvai0TJ4vX", "tax_rates": [], "test_clock": null, - "unit_amount": 89836, - "unit_amount_decimal": "89836" + "unit_amount": 48000, + "unit_amount_decimal": "48000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_1lcgYUIQqHEE3V", - "idempotency_key": "c9e0632b-859b-4a68-ab32-39c2b4e364f4" + "id": "req_CCeGFPHPi7n01W", + "idempotency_key": "4b2f1e79-2e9b-4d4d-92a2-b11f4e574385" }, "type": "invoiceitem.created" }, { - "id": "evt_1NasoIIsgf92XbAOrlcSpKnt", + "id": "evt_1NkU8mIsgf92XbAO27Kb6tuN", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691035609, + "created": 1693324059, "data": { "object": { - "id": "ii_1NasoHIsgf92XbAOCjTkXK8Y", + "id": "ii_1NkU8lIsgf92XbAOpjtHLTbj", "object": "invoiceitem", - "amount": 67377, + "amount": 12000, "currency": "usd", - "customer": "cus_ONe6SLw68QJ6mM", - "date": 1691035609, - "description": "Time on REST Product2 2023-08-03 00:00:00 UTC from 03 Aug 2023 until 03 May 2024", + "customer": "cus_OXZHGomRkHYSjo", + "date": 1693324059, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Aug 2024", "discountable": false, "discounts": [], - "invoice": "in_1NasoHIsgf92XbAOwKys0fmi", + "invoice": "in_1NkU8lIsgf92XbAOSVFDGYyy", "livemode": false, "metadata": {}, "period": { - "end": 1714694400, - "start": 1691020800 + "end": 1724889600, + "start": 1693267200 }, "plan": { - "id": "price_1NasoGIsgf92XbAObld7mz4Q", + "id": "price_1NkU8jIsgf92XbAOh54rwIKn", "object": "plan", "active": true, "aggregate_usage": null, - "amount": 90000, - "amount_decimal": "90000", + "amount": 12000, + "amount_decimal": "12000", "billing_scheme": "per_unit", - "created": 1691035608, + "created": 1693324057, "currency": "usd", "interval": "month", "interval_count": 12, "livemode": false, "metadata": { - "salesforce_frontend_proration": "true", - "salesforce_pricebook_entry_id": "01u7e00000IsjxYAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjxYAAR" + "salesforce_pricebook_entry_id": "01uDE00000KVlJVYA1", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJVYA1" }, "nickname": null, - "product": "prod_ONe64tKDWCgZgE", + "product": "prod_OXZHyKJP3BQlOz", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NasoGIsgf92XbAObld7mz4Q", + "id": "price_1NkU8jIsgf92XbAOh54rwIKn", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691035608, + "created": 1693324057, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_frontend_proration": "true", - "salesforce_pricebook_entry_id": "01u7e00000IsjxYAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjxYAAR" + "salesforce_pricebook_entry_id": "01uDE00000KVlJVYA1", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJVYA1" }, "nickname": null, - "product": "prod_ONe64tKDWCgZgE", + "product": "prod_OXZHyKJP3BQlOz", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12510,95 +12476,95 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 90000, - "unit_amount_decimal": "90000" + "unit_amount": 12000, + "unit_amount_decimal": "12000" }, "proration": true, "quantity": 1, - "subscription": "sub_1NasoHIsgf92XbAOjBwImdln", - "subscription_item": "si_ONe6uWuiSqiF59", + "subscription": "sub_1NkU8lIsgf92XbAOiQoTzW2o", + "subscription_item": "si_OXZHA4PfS4xNO5", "tax_rates": [], "test_clock": null, - "unit_amount": 67377, - "unit_amount_decimal": "67377" + "unit_amount": 12000, + "unit_amount_decimal": "12000" } }, "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_IpAkOBXLKcJZFZ", - "idempotency_key": "d59f8a32-adf2-49d9-8cc1-e7dae02408f2" + "id": "req_hA9clJJPKgRgfk", + "idempotency_key": "c273a568-45f0-4d91-940a-2b747f9dfd69" }, "type": "invoiceitem.created" }, { - "id": "evt_1NaskiIsgf92XbAOSYWlqDud", + "id": "evt_1NkU5nIsgf92XbAOiyfLnEko", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691035388, + "created": 1693323874, "data": { "object": { - "id": "ii_1NaskhIsgf92XbAOXeLwl1Wc", + "id": "ii_1NkU5mIsgf92XbAO8mPAIJGv", "object": "invoiceitem", "amount": 12000, "currency": "usd", - "customer": "cus_ONe2JIzdwqcQGo", - "date": 1691035358, - "description": "Remaining time on REST Product2 2023-08-03 00:00:00 UTC after 03 Aug 2023", + "customer": "cus_OXZEzdeyGrQTjz", + "date": 1693323874, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Aug 2024", "discountable": false, "discounts": [], - "invoice": null, + "invoice": "in_1NkU5mIsgf92XbAOIwP2kgjG", "livemode": false, "metadata": {}, "period": { - "end": 1693713758, - "start": 1691035358 + "end": 1724889600, + "start": 1693267200 }, "plan": { - "id": "price_1NaskeIsgf92XbAOtvdthMHm", + "id": "price_1NkU5kIsgf92XbAOZEHZAROp", "object": "plan", "active": true, "aggregate_usage": null, "amount": 12000, "amount_decimal": "12000", "billing_scheme": "per_unit", - "created": 1691035384, + "created": 1693323872, "currency": "usd", "interval": "month", - "interval_count": 1, + "interval_count": 12, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isjz9AAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isjz9AAB" + "salesforce_pricebook_entry_id": "01uDE00000KVlJGYA1", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJGYA1" }, "nickname": null, - "product": "prod_ONe2csodLrsGJr", + "product": "prod_OXZE5bIJwrarRJ", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NaskeIsgf92XbAOtvdthMHm", + "id": "price_1NkU5kIsgf92XbAOZEHZAROp", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691035384, + "created": 1693323872, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isjz9AAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isjz9AAB" + "salesforce_pricebook_entry_id": "01uDE00000KVlJGYA1", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJGYA1" }, "nickname": null, - "product": "prod_ONe2csodLrsGJr", + "product": "prod_OXZE5bIJwrarRJ", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 1, + "interval_count": 12, "trial_period_days": null, "usage_type": "licensed" }, @@ -12611,10 +12577,10 @@ http_interactions: }, "proration": true, "quantity": 1, - "subscription": "sub_1NaskSIsgf92XbAOcdzmeHGs", - "subscription_item": "si_ONe2Hx81Du04Sb", + "subscription": "sub_1NkU5mIsgf92XbAOaPe91cJX", + "subscription_item": "si_OXZEDBTcJAwHkT", "tax_rates": [], - "test_clock": "clock_1NaskEIsgf92XbAOzQTzqX9h", + "test_clock": null, "unit_amount": 12000, "unit_amount_decimal": "12000" } @@ -12622,79 +12588,79 @@ http_interactions: "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_M0feo9imKyH9X8", - "idempotency_key": "97d163f6-7ae0-443c-b76c-025bca1f011d" + "id": "req_dMEZB4Xv6qLx7y", + "idempotency_key": "e3c26cf5-6875-4c28-a713-a424d18696bf" }, "type": "invoiceitem.created" }, { - "id": "evt_1NaskcIsgf92XbAO5BVjWpiG", + "id": "evt_1NkU2KIsgf92XbAOUymWaHPu", "object": "event", "account": "acct_15uapDIsgf92XbAO", "api_version": "2020-08-27", - "created": 1691035381, + "created": 1693323659, "data": { "object": { - "id": "ii_1NaskbIsgf92XbAOgx3VENuW", + "id": "ii_1NkU2JIsgf92XbAOvWDRvUtA", "object": "invoiceitem", "amount": 12000, "currency": "usd", - "customer": "cus_ONe2JIzdwqcQGo", - "date": 1691035358, - "description": "Remaining time on REST Product2 2023-08-03 00:00:00 UTC after 03 Aug 2023", + "customer": "cus_OXZAAdCus4csDY", + "date": 1693323659, + "description": "Time on REST Product2 2023-08-29 00:00:00 UTC from 29 Aug 2023 until 29 Aug 2024", "discountable": false, "discounts": [], - "invoice": null, + "invoice": "in_1NkU2JIsgf92XbAOI6YRnxNc", "livemode": false, "metadata": {}, "period": { - "end": 1693713758, - "start": 1691035358 + "end": 1724889600, + "start": 1693267200 }, "plan": { - "id": "price_1NaskYIsgf92XbAOG9tYXxhh", + "id": "price_1NkU2HIsgf92XbAOpV7rt6lr", "object": "plan", "active": true, "aggregate_usage": null, "amount": 12000, "amount_decimal": "12000", "billing_scheme": "per_unit", - "created": 1691035378, + "created": 1693323657, "currency": "usd", "interval": "month", - "interval_count": 1, + "interval_count": 12, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isjz4AAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isjz4AAB" + "salesforce_pricebook_entry_id": "01uDE00000KVlJBYA1", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJBYA1" }, "nickname": null, - "product": "prod_ONe2L9qpxQ8W6l", + "product": "prod_OXZARz4mGgy9R9", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NaskYIsgf92XbAOG9tYXxhh", + "id": "price_1NkU2HIsgf92XbAOpV7rt6lr", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691035378, + "created": 1693323657, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isjz4AAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isjz4AAB" + "salesforce_pricebook_entry_id": "01uDE00000KVlJBYA1", + "salesforce_pricebook_entry_link": "https://customer-enterprise-8894-dev-ed.scratch.my.salesforce.com/01uDE00000KVlJBYA1" }, "nickname": null, - "product": "prod_ONe2L9qpxQ8W6l", + "product": "prod_OXZARz4mGgy9R9", "recurring": { "aggregate_usage": null, "interval": "month", - "interval_count": 1, + "interval_count": 12, "trial_period_days": null, "usage_type": "licensed" }, @@ -12707,10 +12673,10 @@ http_interactions: }, "proration": true, "quantity": 1, - "subscription": "sub_1NaskSIsgf92XbAOcdzmeHGs", - "subscription_item": "si_ONe29djiO1quhs", + "subscription": "sub_1NkU2JIsgf92XbAOlO9ZRt3D", + "subscription_item": "si_OXZAmEOvqBl24V", "tax_rates": [], - "test_clock": "clock_1NaskEIsgf92XbAOzQTzqX9h", + "test_clock": null, "unit_amount": 12000, "unit_amount_decimal": "12000" } @@ -12718,8 +12684,8 @@ http_interactions: "livemode": false, "pending_webhooks": 0, "request": { - "id": "req_WwxjN7zrgHcVXO", - "idempotency_key": "f5090f54-acba-4520-bcaf-a95e67bcd9cb" + "id": "req_qZCA0VUngwmxkA", + "idempotency_key": "4a679a60-2a89-4040-9b0e-156d8bcfeaed" }, "type": "invoiceitem.created" } diff --git a/test/vcr_cassettes/integration/test_translate_order/integrates_a_subscription_order_with_mapped_start_date_and_subscription_term.yml b/test/vcr_cassettes/integration/test_translate_order/integrates_a_subscription_order_with_mapped_start_date_and_subscription_term.yml index 60e8ea67ba..738df7358d 100644 --- a/test/vcr_cassettes/integration/test_translate_order/integrates_a_subscription_order_with_mapped_start_date_and_subscription_term.yml +++ b/test/vcr_cassettes/integration/test_translate_order/integrates_a_subscription_order_with_mapped_start_date_and_subscription_term.yml @@ -1048,6 +1048,12 @@ http_interactions: GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains + Content-Security-Policy-Report-Only: + - 'default-src https:; script-src https: ''unsafe-inline'' ''unsafe-eval''; + style-src https: ''unsafe-inline''; img-src https: data: blob: file:; frame-ancestors + ''self'' *.salesforce.com *.force.com *.visualforce.com *.documentforce.com; + font-src https: data: blob: file:; connect-src ''self'' https:; report-uri + https://csp-report.force.com/_/ContentDomainCSPNoAuth?type=mydomain' X-Content-Type-Options: - nosniff X-Xss-Protection: @@ -3695,8 +3701,8 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 6000, - "unit_amount_decimal": "6000" + "unit_amount": 12000, + "unit_amount_decimal": "12000" } recorded_at: Wed, 11 Oct 2023 00:00:00 GMT - request: @@ -3996,7 +4002,7 @@ http_interactions: Content-Type: - application/json Content-Length: - - '844' + - '849' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -4058,8 +4064,8 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 6000, - "unit_amount_decimal": "6000" + "unit_amount": 12000, + "unit_amount_decimal": "12000" } recorded_at: Wed, 11 Oct 2023 00:00:00 GMT - request: @@ -4484,8 +4490,8 @@ http_interactions: "tiers_mode": null, "transform_quantity": null, "type": "recurring", - "unit_amount": 6000, - "unit_amount_decimal": "6000" + "unit_amount": 12000, + "unit_amount_decimal": "12000" }, "quantity": 1, "tax_rates": [] diff --git a/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_a_mdq_licensed_product.yml b/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_a_mdq_licensed_product.yml new file mode 100644 index 0000000000..112b16ed4c --- /dev/null +++ b/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_a_mdq_licensed_product.yml @@ -0,0 +1,6435 @@ +--- +http_interactions: +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account + body: + encoding: UTF-8 + string: '{"Name":"REST Account 2023-10-16 00:00:00 UTC"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:12 GMT + Set-Cookie: + - BrowserId=h3xLoGxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:12 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=411/5000000 + Location: + - "/services/data/v58.0/sobjects/Account/0018N00000JbPIHQA3" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0018N00000JbPIHQA3","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:13 GMT + Set-Cookie: + - BrowserId=h7emi2xPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:13 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=415/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + body: + encoding: UTF-8 + string: '{"Name":"REST Opportunity 2023-10-16 00:00:00 UTC","CloseDate":"2023-10-16","StageName":"Closed/Won","AccountId":"0018N00000JbPIHQA3"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:13 GMT + Set-Cookie: + - BrowserId=h86weWxPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:13 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=409/5000000 + Location: + - "/services/data/v58.0/sobjects/Opportunity/0068N000006QZRgQAO" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0068N000006QZRgQAO","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + body: + encoding: UTF-8 + string: '{"LastName":"Bianco","Email":"order_with_mdq_licensed_product_4@example.com"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:13 GMT + Set-Cookie: + - BrowserId=h_3XT2xPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:13 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=412/5000000 + Location: + - "/services/data/v58.0/sobjects/Contact/0038N00000GH2wnQAD" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0038N00000GH2wnQAD","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c + body: + encoding: UTF-8 + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0068N000006QZRgQAO","SBQQ__PrimaryContact__c":"0038N00000GH2wnQAD","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscriptionTerm__c":36}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:13 GMT + Set-Cookie: + - BrowserId=iDKi5mxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:13 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=413/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0z8N000000zBcGQAU","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + body: + encoding: UTF-8 + string: '{"Name":"REST Product2 2023-10-16 00:00:00 UTC","IsActive":true,"Description":"A + great description","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__SubscriptionTerm__c":1,"SBQQ__BillingFrequency__c":"Monthly"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:14 GMT + Set-Cookie: + - BrowserId=iOHOt2xPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:14 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=414/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t8N000003DfNpQAK" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t8N000003DfNpQAK","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:15 GMT + Set-Cookie: + - BrowserId=iRU6tGxPEe6dhS0iYJKafA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:15 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=410/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + body: + encoding: UTF-8 + string: '{"Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNpQAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:15 GMT + Set-Cookie: + - BrowserId=iTFNv2xPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:15 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=408/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003e0MKQAY" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u8N000003e0MKQAY","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Dimension__c + body: + encoding: UTF-8 + string: '{"Name":"Yearly Ramp","SBQQ__Type__c":"Year","SBQQ__Product__c":"01t8N000003DfNpQAK"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:15 GMT + Set-Cookie: + - BrowserId=iVYUYmxPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:15 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=413/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0D8N000004nihnUAA","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:16 GMT + Set-Cookie: + - BrowserId=iYMXhGxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:16 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=415/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z8N000000zBcGQAU + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:16 GMT + Set-Cookie: + - BrowserId=iZmF7WxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:16 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU\"},\"Id\":\"a0z8N000000zBcGQAU\",\"Name\":\"Q-00252\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIHQA3\",\"SBQQ__SubscriptionTerm__c\":36,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRgQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIHQA3\"},\"Id\":\"0018N00000JbPIHQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRgQAO\"},\"Id\":\"0068N000006QZRgQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcGQAU\",\"AccountId\":\"0018N00000JbPIHQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t8N000003DfNpQAK + body: + encoding: UTF-8 + string: '{"context":"{\"pricebookId\":\"01s8N000002d0dzQAA\"}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:16 GMT + Set-Cookie: + - BrowserId=ii39jWxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:17 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"Id\":\"a0D8N000004nihnUAA\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:12:15.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:12:15.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:12:15.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MKQAY\"},\"Product2Id\":\"01t8N000003DfNpQAK\",\"Id\":\"01u8N000003e0MKQAY\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU\"},\"Id\":\"a0z8N000000zBcGQAU\",\"Name\":\"Q-00252\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIHQA3\",\"SBQQ__SubscriptionTerm__c\":36,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRgQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIHQA3\"},\"Id\":\"0018N00000JbPIHQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRgQAO\"},\"Id\":\"0068N000006QZRgQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcGQAU\",\"AccountId\":\"0018N00000JbPIHQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"Id\":\"a0D8N000004nihnUAA\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:12:15.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:12:15.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:12:15.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MKQAY\"},\"Product2Id\":\"01t8N000003DfNpQAK\",\"Id\":\"01u8N000003e0MKQAY\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:17 GMT + Set-Cookie: + - BrowserId=ioJfgmxPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:17 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU\"},\"Id\":\"a0z8N000000zBcGQAU\",\"Name\":\"Q-00252\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIHQA3\",\"SBQQ__SubscriptionTerm__c\":36,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":3,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRgQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIHQA3\"},\"Id\":\"0018N00000JbPIHQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRgQAO\"},\"Id\":\"0068N000006QZRgQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcGQAU\",\"AccountId\":\"0018N00000JbPIHQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":4,\"netTotal\":4320.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000563\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000564\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":3,\"SBQQ__SegmentLabel__c\":\"Year 3\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2026-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000565\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2025-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-10-16\",\"effectiveEndDate\":\"2026-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":4320.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU\"},\"Id\":\"a0z8N000000zBcGQAU\",\"Name\":\"Q-00252\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIHQA3\",\"SBQQ__SubscriptionTerm__c\":36,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":3,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRgQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIHQA3\"},\"Id\":\"0018N00000JbPIHQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRgQAO\"},\"Id\":\"0068N000006QZRgQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcGQAU\",\"AccountId\":\"0018N00000JbPIHQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":4,\"netTotal\":4320.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000563\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000564\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":3,\"SBQQ__SegmentLabel__c\":\"Year 3\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2026-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000565\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2025-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-10-16\",\"effectiveEndDate\":\"2026-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":4320.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:19 GMT + Set-Cookie: + - BrowserId=i1sL-2xPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:19 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU\"},\"Id\":\"a0z8N000000zBcGQAU\",\"Name\":\"Q-00252\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIHQA3\",\"SBQQ__SubscriptionTerm__c\":36,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":4320.00,\"SBQQ__CustomerAmount__c\":4320.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":3,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRgQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIHQA3\"},\"Id\":\"0018N00000JbPIHQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRgQAO\"},\"Id\":\"0068N000006QZRgQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcGQAU\",\"AccountId\":\"0018N00000JbPIHQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":4,\"netTotal\":4320.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000566\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000567\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":3,\"SBQQ__SegmentLabel__c\":\"Year 3\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2026-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000568\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2025-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-10-16\",\"effectiveEndDate\":\"2026-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":4320.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + body: + encoding: UTF-8 + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU\"},\"Id\":\"a0z8N000000zBcGQAU\",\"Name\":\"Q-00252\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIHQA3\",\"SBQQ__SubscriptionTerm__c\":36,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":4320.0,\"SBQQ__CustomerAmount__c\":4320.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":3,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRgQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIHQA3\"},\"Id\":\"0018N00000JbPIHQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRgQAO\"},\"Id\":\"0068N000006QZRgQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcGQAU\",\"AccountId\":\"0018N00000JbPIHQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":4,\"netTotal\":4320.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000566\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000567\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":3,\"SBQQ__SegmentLabel__c\":\"Year 3\",\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2026-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000568\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":36,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2025-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"Id\":\"01t8N000003DfNpQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-10-16\",\"effectiveEndDate\":\"2026-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":4320.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:20 GMT + Set-Cookie: + - BrowserId=jBVbBWxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:20 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":4320.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":4320.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRgQAO\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcGQAU\",\"AccountId\":\"0018N00000JbPIHQA3\",\"Id\":\"0068N000006QZRgQAO\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIHQA3\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JbPIHQA3\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-10-16 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00252\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":36.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0018N00000JbPIHQA3\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0068N000006QZRgQAO\",\"SBQQ__LineItemCount__c\":3.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z8N000000zBcGQAU\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":4,\"netTotal\":4320.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgNQAW\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":1.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJgNQAW\",\"SBQQ__EffectiveSubscriptionTerm__c\":36.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000566\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNpQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgOQAW\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":2.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJgOQAW\",\"SBQQ__EffectiveSubscriptionTerm__c\":36.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000567\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNpQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcGQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgPQAW\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":3.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcGQAU\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJgPQAW\",\"SBQQ__EffectiveSubscriptionTerm__c\":36.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihnUAA\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2026-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihnUAA\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihnUAA\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479938090\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000568\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2025-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MKQAY\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNpQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNpQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 3\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-10-16\",\"effectiveEndDate\":\"2026-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":4320.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU + body: + encoding: UTF-8 + string: '{"SBQQ__Ordered__c":true}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:21 GMT + Set-Cookie: + - BrowserId=jISXrmxPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:21 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=409/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU/SBQQ__Orders__r + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:22 GMT + Set-Cookie: + - BrowserId=jYMcN2xPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:22 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=426/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8018N00000032c4QAA"},"Id":"8018N00000032c4QAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPIHQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRgQAO","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00000305","TotalAmount":4320.0,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:22.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:22.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":4320.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c4QAA + body: + encoding: UTF-8 + string: '{"Status":"Activated"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:22 GMT + Set-Cookie: + - BrowserId=jaBoB2xPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:22 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=420/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c4QAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:23 GMT + Set-Cookie: + - BrowserId=jhOcwGxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:23 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=425/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:23 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c4QAA"},"Id":"8018N00000032c4QAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPIHQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRgQAO","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:12:23.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000305","TotalAmount":4320.0,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:23.000+0000","LastViewedDate":"2023-10-16T18:12:22.000+0000","LastReferencedDate":"2023-10-16T18:12:22.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":4320.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20OrderItem%20WHERE%20OrderId%20=%20%278018N00000032c4QAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:23 GMT + Set-Cookie: + - BrowserId=jjH5nGxPEe6eVoH0UjEKMA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:23 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=420/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":3,"done":true,"records":[{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2oQAA"},"Id":"8028N0000005p2oQAA"},{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2pQAA"},"Id":"8028N0000005p2pQAA"},{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2qQAA"},"Id":"8028N0000005p2qQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2oQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:24 GMT + Set-Cookie: + - BrowserId=jk6pe2xPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=419/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:23 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2oQAA"},"Id":"8028N0000005p2oQAA","Product2Id":"01t8N000003DfNpQAK","IsDeleted":false,"OrderId":"8018N00000032c4QAA","PricebookEntryId":"01u8N000003e0MKQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2023-10-16","EndDate":"2024-10-15","Description":null,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:23.000+0000","OrderItemNumber":"0000000215","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihnUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__QuoteLine__c":"a0v8N000002TJgNQAW","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":null,"Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2pQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:24 GMT + Set-Cookie: + - BrowserId=jm3w3mxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=420/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:23 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2pQAA"},"Id":"8028N0000005p2pQAA","Product2Id":"01t8N000003DfNpQAK","IsDeleted":false,"OrderId":"8018N00000032c4QAA","PricebookEntryId":"01u8N000003e0MKQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2025-10-16","EndDate":"2026-10-15","Description":null,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:23.000+0000","OrderItemNumber":"0000000216","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihnUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__QuoteLine__c":"a0v8N000002TJgPQAW","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":3.0,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":null,"Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2qQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:24 GMT + Set-Cookie: + - BrowserId=jovZjGxPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=422/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:23 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2qQAA"},"Id":"8028N0000005p2qQAA","Product2Id":"01t8N000003DfNpQAK","IsDeleted":false,"OrderId":"8018N00000032c4QAA","PricebookEntryId":"01u8N000003e0MKQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2024-10-16","EndDate":"2025-10-15","Description":null,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:23.000+0000","OrderItemNumber":"0000000217","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihnUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__QuoteLine__c":"a0v8N000002TJgOQAW","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":null,"Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c4QAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:24 GMT + Set-Cookie: + - BrowserId=jqsh3WxPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=437/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:23 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c4QAA"},"Id":"8018N00000032c4QAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPIHQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRgQAO","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:12:23.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000305","TotalAmount":4320.0,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:23.000+0000","LastViewedDate":"2023-10-16T18:12:23.000+0000","LastReferencedDate":"2023-10-16T18:12:23.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":4320.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + body: + encoding: UTF-8 + string: '{"order_ids":["8018N00000032c4QAA"]}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:24 GMT + Set-Cookie: + - BrowserId=jsppZmxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:24 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0038N00000GH2wnQAD"},"Id":"0038N00000GH2wnQAD","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"order_with_mdq_licensed_product_4@example.com","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:13.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:13.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:13.000+0000","LastViewedDate":"2023-10-16T18:12:13.000+0000","LastReferencedDate":"2023-10-16T18:12:13.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0038N00000GH2wnQAD","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRgQAO"},"Id":"0068N000006QZRgQAO","IsDeleted":false,"AccountId":"0018N00000JbPIHQA3","IsPrivate":false,"Name":"REST + Opportunity 2023-10-16 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-10-16","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:13.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:14.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:14.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-10-16T18:12:13.000+0000","LastReferencedDate":"2023-10-16T18:12:13.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000zBcGQAU","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0018N00000JbPIHQA3"},"Id":"0018N00000JbPIHQA3","IsDeleted":false,"Name":"REST + Account 2023-10-16 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0018N00000JbPIHQA3","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:12.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:12.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:12.000+0000","LastViewedDate":"2023-10-16T18:12:12.000+0000","LastReferencedDate":"2023-10-16T18:12:12.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["0018N00000JbPIHQA3"],"Opportunities":["0068N000006QZRgQAO"],"Contacts":["0038N00000GH2wnQAD"],"SBQQ__RegularAmount__c":4320.00,"SBQQ__NetAmount__c":4320.00,"SBQQ__ListAmount__c":4320.00,"SBQQ__CustomerAmount__c":4320.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-11-15","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":3,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":true,"SBQQ__Type__c":"Quote","SBQQ__SubscriptionTerm__c":36,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-10-16","SBQQ__ShippingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0038N00000GH2wnQAD","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__PriceBook__c":"01s8N000002d0dzQAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0068N000006QZRgQAO","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-10-16T18:12:21.000+0000","SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__Account__c":"0018N00000JbPIHQA3","LastReferencedDate":"2023-10-16T18:12:21.000+0000","LastViewedDate":"2023-10-16T18:12:21.000+0000","SystemModstamp":"2023-10-16T18:12:21.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:14.000+0000","Name":"Q-00252","IsDeleted":false,"OwnerId":"0058N000004zYG5QAM","Id":"a0z8N000000zBcGQAU","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcGQAU","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t8N000003DfNpQAK"},"Id":"01t8N000003DfNpQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:12:15.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:15.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:15.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BillingFrequency__c":"Monthly","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MKQAY"},"Id":"01u8N000003e0MKQAY","Name":"REST + Product2 2023-10-16 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNpQAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-10-16T18:12:15.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:15.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:15.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgNQAW"},"Id":"a0v8N000002TJgNQAW","IsDeleted":false,"Name":"QL-0000569","CreatedDate":"2023-10-16T18:12:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:20.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:20.000+0000","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":1440.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihnUAA","SBQQ__EndDate__c":"2024-10-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MKQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNpQAK","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":1440.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":1,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__SegmentLabel__c":"Year 1","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2024-10-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":36,"SBQQ__ListTotal__c":1440.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":1440.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":1440.00,"SBQQ__PackageTotal__c":1440.00,"SBQQ__PartnerTotal__c":1440.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgPQAW"},"Id":"a0v8N000002TJgPQAW","IsDeleted":false,"Name":"QL-0000571","CreatedDate":"2023-10-16T18:12:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:20.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:20.000+0000","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":1440.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihnUAA","SBQQ__EndDate__c":"2026-10-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MKQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNpQAK","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":1440.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":3,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__SegmentLabel__c":"Year 3","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2025-10-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2026-10-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2025-10-16","SBQQ__EffectiveSubscriptionTerm__c":36,"SBQQ__ListTotal__c":1440.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":1440.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":1440.00,"SBQQ__PackageTotal__c":1440.00,"SBQQ__PartnerTotal__c":1440.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgOQAW"},"Id":"a0v8N000002TJgOQAW","IsDeleted":false,"Name":"QL-0000570","CreatedDate":"2023-10-16T18:12:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:20.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:20.000+0000","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":1440.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihnUAA","SBQQ__EndDate__c":"2025-10-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MKQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNpQAK","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":1440.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":2,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__SegmentLabel__c":"Year 2","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2024-10-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2025-10-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-10-16","SBQQ__EffectiveSubscriptionTerm__c":36,"SBQQ__ListTotal__c":1440.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":1440.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":1440.00,"SBQQ__PackageTotal__c":1440.00,"SBQQ__PartnerTotal__c":1440.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"PricebookEntries":[],"Products":["01t8N000003DfNpQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":1440.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479938090","SBQQ__SegmentIndex__c":1,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJgNQAW","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihnUAA","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000215","SystemModstamp":"2023-10-16T18:12:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:23.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:21.000+0000","EndDate":"2024-10-15","ServiceDate":"2023-10-16","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0MKQAY","OrderId":"8018N00000032c4QAA","IsDeleted":false,"Product2Id":"01t8N000003DfNpQAK","Id":"8028N0000005p2oQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2oQAA","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t8N000003DfNpQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":1440.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479938090","SBQQ__SegmentIndex__c":3,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJgPQAW","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihnUAA","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000216","SystemModstamp":"2023-10-16T18:12:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:23.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:21.000+0000","EndDate":"2026-10-15","ServiceDate":"2025-10-16","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0MKQAY","OrderId":"8018N00000032c4QAA","IsDeleted":false,"Product2Id":"01t8N000003DfNpQAK","Id":"8028N0000005p2pQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2pQAA","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t8N000003DfNpQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":1440.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479938090","SBQQ__SegmentIndex__c":2,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJgOQAW","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihnUAA","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000217","SystemModstamp":"2023-10-16T18:12:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:23.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:21.000+0000","EndDate":"2025-10-15","ServiceDate":"2024-10-16","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0MKQAY","OrderId":"8018N00000032c4QAA","IsDeleted":false,"Product2Id":"01t8N000003DfNpQAK","Id":"8028N0000005p2qQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2qQAA","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-09-29T17:43:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T17:43:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T17:43:59.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s8N000002d0dzQAA"],"Opportunities":["0068N000006QZRgQAO"],"Accounts":["0018N00000JbPIHQA3"],"OrderItems":["8028N0000005p2oQAA","8028N0000005p2pQAA","8028N0000005p2qQAA"],"Quotes":["a0z8N000000zBcGQAU"],"Opportunity":{"Id":"0068N000006QZRgQAO","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRgQAO","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":4320.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-10-16T18:12:24.000+0000","LastViewedDate":"2023-10-16T18:12:24.000+0000","SystemModstamp":"2023-10-16T18:12:23.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:23.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:21.000+0000","TotalAmount":4320.00,"OrderNumber":"00000305","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-10-16T18:12:23.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-10-16","OpportunityId":"0068N000006QZRgQAO","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JbPIHQA3","OwnerId":"0058N000004zYG5QAM","Id":"8018N00000032c4QAA","attributes":{"url":"/services/data/v59.0/sobjects/Order/8018N00000032c4QAA","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"HasOptedOutOfFax","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"DoNotCall","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ContractId","sobject_type":"Opportunity","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"IqScore","sobject_type":"Opportunity","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Primary_Contact__c","sobject_type":"Account","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingStreet","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingCity","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingState","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingPostalCode","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingCountry","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingLatitude","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingLongitude","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingGeocodeAccuracy","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingAddress","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Name","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%278018N00000032c4QAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:26 GMT + Set-Cookie: + - BrowserId=j6vvhGxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:26 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=435/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c4QAA"},"Type":"New","OpportunityId":"0068N000006QZRgQAO","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006QZRgQAO"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278018N00000032c4QAA%27%20%20AND%20Status%20=%20%27Activated%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:26 GMT + Set-Cookie: + - BrowserId=j8rpWGxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:26 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=437/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c4QAA"},"Id":"8018N00000032c4QAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/customers + body: + encoding: UTF-8 + string: name=REST+Account++2023-10-16+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0018N00000JbPIHQA3&metadata[salesforce_account_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F0018N00000JbPIHQA3 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - 676eda1a-4857-4db5-b7e9-a09bbc3182e0 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:27 GMT + Content-Type: + - application/json + Content-Length: + - '843' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fcustomers; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 676eda1a-4857-4db5-b7e9-a09bbc3182e0 + Original-Request: + - req_nsNpzrMG1vm2vq + Request-Id: + - req_nsNpzrMG1vm2vq + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "cus_OpaSLyrtXSvEoy", + "object": "customer", + "address": null, + "balance": 0, + "created": 1697479946, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "F4F516F2", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, + "livemode": false, + "metadata": { + "salesforce_account_id": "0018N00000JbPIHQA3", + "salesforce_account_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/0018N00000JbPIHQA3" + }, + "name": "REST Account 2023-10-16 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0018N00000JbPIHQA3 + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"cus_OpaSLyrtXSvEoy"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:27 GMT + Set-Cookie: + - BrowserId=kEIVjGxPEe6dhS0iYJKafA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:27 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=434/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/products + body: + encoding: UTF-8 + string: name=REST+Product2++2023-10-16+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t8N000003DfNpQAK&metadata[salesforce_product2_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01t8N000003DfNpQAK + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_nsNpzrMG1vm2vq","request_duration_ms":520}}' + Idempotency-Key: + - 7ef42563-5363-4d64-8142-759bbb4d3f13 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:27 GMT + Content-Type: + - application/json + Content-Length: + - '761' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 7ef42563-5363-4d64-8142-759bbb4d3f13 + Original-Request: + - req_2KpFa3AHkpeIqf + Request-Id: + - req_2KpFa3AHkpeIqf + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaSX1jqwhTgEa", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479947, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNpQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNpQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-11", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479947, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNpQAK + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"prod_OpaSX1jqwhTgEa"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:27 GMT + Set-Cookie: + - BrowserId=kJ0GD2xPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:27 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=438/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNpQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:28 GMT + Set-Cookie: + - BrowserId=kNIgF2xPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=437/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNpQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:28 GMT + Set-Cookie: + - BrowserId=kOqJmmxPEe6dhS0iYJKafA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=435/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNpQAK + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:28 GMT + Set-Cookie: + - BrowserId=kQQsmWxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=438/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000003DfNpQAK"},"Id":"01t8N000003DfNpQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:12:15.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:28.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPricingField__c":"Quantity","SBQQ__ChargeType__c":null,"SBQQ__Component__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationFieldSet__c":null,"SBQQ__ConfigurationFields__c":null,"SBQQ__ConfigurationFormTitle__c":null,"SBQQ__ConfigurationType__c":null,"SBQQ__ConfigurationValidator__c":null,"SBQQ__ConfiguredCodePattern__c":null,"SBQQ__ConfiguredDescriptionPattern__c":null,"SBQQ__CostEditable__c":false,"SBQQ__CostSchedule__c":null,"SBQQ__CustomConfigurationPage__c":null,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__CustomerCommunityAvailability__c":null,"SBQQ__DefaultPricingTable__c":null,"SBQQ__DefaultQuantity__c":1.0,"SBQQ__DescriptionLocked__c":false,"SBQQ__DiscountCategory__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DynamicPricingConstraint__c":null,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionLayout__c":null,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingGuidance__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductPictureID__c":null,"SBQQ__QuantityEditable__c":true,"SBQQ__QuantityScale__c":null,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__RenewalProduct__c":null,"SBQQ__SortOrder__c":null,"SBQQ__Specifications__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":1.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_OpaSX1jqwhTgEa","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OpaSX1jqwhTgEa"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2oQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:28 GMT + Set-Cookie: + - BrowserId=kR8HnWxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=439/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2oQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:28 GMT + Set-Cookie: + - BrowserId=kTatyGxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:28 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=432/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:29 GMT + Set-Cookie: + - BrowserId=kU4uJmxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:29 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=440/5000000 + Etag: + - '"1100e741--gzip"' + Last-Modified: + - Wed, 11 Oct 2023 19:10:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"encoding":"UTF-8","maxBatchSize":200,"sobjects":[{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pp","label":"AI + Application","labelPlural":"AI Applications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplication/{ID}","describe":"/services/data/v58.0/sobjects/AIApplication/describe","sobject":"/services/data/v58.0/sobjects/AIApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6S9","label":"AI + Application config","labelPlural":"AI Application configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplicationConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplicationConfig/{ID}","describe":"/services/data/v58.0/sobjects/AIApplicationConfig/describe","sobject":"/services/data/v58.0/sobjects/AIApplicationConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qd","label":"AI + Insight Action","labelPlural":"AI Insight Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightAction/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightAction/describe","sobject":"/services/data/v58.0/sobjects/AIInsightAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9bq","label":"AI + Insight Feedback","labelPlural":"AI Insight Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightFeedback/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightFeedback/describe","sobject":"/services/data/v58.0/sobjects/AIInsightFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T2","label":"AI + Insight Reason","labelPlural":"AI Insight Reasons","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightReason","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightReason/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightReason/describe","sobject":"/services/data/v58.0/sobjects/AIInsightReason"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qc","label":"AI + Insight Value","labelPlural":"AI Insight Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightValue/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightValue/describe","sobject":"/services/data/v58.0/sobjects/AIInsightValue"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ae","label":"AI + Prediction Event","labelPlural":"AI Prediction Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIPredictionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIPredictionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AIPredictionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AIPredictionEvent/describe","sobject":"/services/data/v58.0/sobjects/AIPredictionEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qb","label":"AI + Record Insight","labelPlural":"AI Record Insights","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIRecordInsight","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIRecordInsight/{ID}","describe":"/services/data/v58.0/sobjects/AIRecordInsight/describe","sobject":"/services/data/v58.0/sobjects/AIRecordInsight"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Accepted + Event Relation","labelPlural":"Accepted Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AcceptedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AcceptedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/AcceptedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/AcceptedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"001","label":"Account","labelPlural":"Accounts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Account","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Account/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Account/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Account/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Account/listviews","describe":"/services/data/v58.0/sobjects/Account/describe","quickActions":"/services/data/v58.0/sobjects/Account/quickActions","layouts":"/services/data/v58.0/sobjects/Account/describe/layouts","sobject":"/services/data/v58.0/sobjects/Account"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Change Event","labelPlural":"Account Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CA","label":"Account + Clean Info","labelPlural":"Account Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/AccountCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/AccountCleanInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02Z","label":"Account + Contact Role","labelPlural":"Account Contact Roles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRole/{ID}","describe":"/services/data/v58.0/sobjects/AccountContactRole/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AccountContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Contact Role Change Event","labelPlural":"Account Contact Role Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Feed","labelPlural":"Account Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountFeed/{ID}","describe":"/services/data/v58.0/sobjects/AccountFeed/describe","sobject":"/services/data/v58.0/sobjects/AccountFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + History","labelPlural":"Account History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountHistory/{ID}","describe":"/services/data/v58.0/sobjects/AccountHistory/describe","sobject":"/services/data/v58.0/sobjects/AccountHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Account + Partner","labelPlural":"Account Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AccountPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AccountPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AccountPartner/{ID}","describe":"/services/data/v58.0/sobjects/AccountPartner/describe","layouts":"/services/data/v58.0/sobjects/AccountPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/AccountPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Account","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00r","label":"Account + Share","labelPlural":"Account Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountShare/{ID}","describe":"/services/data/v58.0/sobjects/AccountShare/describe","sobject":"/services/data/v58.0/sobjects/AccountShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07g","label":"Action + Link Group Template","labelPlural":"Action Link Group Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ActionLinkGroupTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07l","label":"Action + Link Template","labelPlural":"Action Link Templates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ActionLinkTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActionLinkTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H2","label":"Active + Feature License Metric","labelPlural":"Active Feature License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveFeatureLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H1","label":"Active + Permission Set License Metric","labelPlural":"Active Permission Set License + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivePermSetLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H0","label":"Active + Profile Metric","labelPlural":"Active Profile Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveProfileMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveProfileMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveProfileMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveProfileMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2fp","label":"Activity + Field History","labelPlural":"Activity Field Histories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityFieldHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Activity + History","labelPlural":"Activity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04m","label":"Additional + Directory Number","labelPlural":"Additional Directory Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AdditionalNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AdditionalNumber/{ID}","describe":"/services/data/v58.0/sobjects/AdditionalNumber/describe","sobject":"/services/data/v58.0/sobjects/AdditionalNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"130","label":"Address","labelPlural":"Addresses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Address","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Address/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Address/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Address/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Address/describe","layouts":"/services/data/v58.0/sobjects/Address/describe/layouts","sobject":"/services/data/v58.0/sobjects/Address"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Aggregate + Result","labelPlural":"Aggregate Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AggregateResult","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AggregateResult/{ID}","describe":"/services/data/v58.0/sobjects/AggregateResult/describe","sobject":"/services/data/v58.0/sobjects/AggregateResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Z7","label":"Alternative + Payment Method","labelPlural":"Alternative Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AlternativePaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/AlternativePaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethod"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AlternativePaymentMethod","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Alternative + Payment Method Share","labelPlural":"Alternative Payment Method Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AlternativePaymentMethodShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/describe","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bt","label":"Announcement","labelPlural":"Announcements","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Announcement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Announcement/{ID}","describe":"/services/data/v58.0/sobjects/Announcement/describe","sobject":"/services/data/v58.0/sobjects/Announcement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01p","label":"Apex + Class","labelPlural":"Apex Classes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApexClass","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApexClass/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApexClass/{ID}","describe":"/services/data/v58.0/sobjects/ApexClass/describe","layouts":"/services/data/v58.0/sobjects/ApexClass/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApexClass"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"099","label":"Visualforce + Component","labelPlural":"Visualforce Components","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexComponent/{ID}","describe":"/services/data/v58.0/sobjects/ApexComponent/describe","sobject":"/services/data/v58.0/sobjects/ApexComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06j","label":"Apex + Email Notification","labelPlural":"Apex Email Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexEmailNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexEmailNotification/{ID}","describe":"/services/data/v58.0/sobjects/ApexEmailNotification/describe","sobject":"/services/data/v58.0/sobjects/ApexEmailNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07L","label":"Apex + Debug Log","labelPlural":"Apex Debug Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexLog/{ID}","describe":"/services/data/v58.0/sobjects/ApexLog/describe","sobject":"/services/data/v58.0/sobjects/ApexLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"066","label":"Visualforce + Page","labelPlural":"Visualforce Pages","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexPage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPage/{ID}","describe":"/services/data/v58.0/sobjects/ApexPage/describe","sobject":"/services/data/v58.0/sobjects/ApexPage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ve","label":"Apex + Page Info","labelPlural":"Apex Pages Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexPageInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPageInfo/{ID}","describe":"/services/data/v58.0/sobjects/ApexPageInfo/describe","sobject":"/services/data/v58.0/sobjects/ApexPageInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"709","label":"Apex + Test Queue Item","labelPlural":"Apex Test Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestQueueItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestQueueItem/describe","sobject":"/services/data/v58.0/sobjects/ApexTestQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07M","label":"Apex + Test Result","labelPlural":"Apex Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05n","label":"Apex + Test Result Limit","labelPlural":"Apex Test Result Limit","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResultLimits","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResultLimits/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResultLimits/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResultLimits"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05m","label":"Apex + Test Run Result","labelPlural":"Apex Test Run Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestRunResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestRunResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestRunResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestRunResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05F","label":"Apex + Test Suite","labelPlural":"Apex Test Suites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestSuite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestSuite/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestSuite/describe","sobject":"/services/data/v58.0/sobjects/ApexTestSuite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01q","label":"Apex + Trigger","labelPlural":"Apex Triggers","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexTrigger","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTrigger/{ID}","describe":"/services/data/v58.0/sobjects/ApexTrigger/describe","sobject":"/services/data/v58.0/sobjects/ApexTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0kt","label":"Apex + Type Implementor","labelPlural":"Apex Type Implementors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTypeImplementor","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTypeImplementor/{ID}","describe":"/services/data/v58.0/sobjects/ApexTypeImplementor/describe","sobject":"/services/data/v58.0/sobjects/ApexTypeImplementor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j5","label":"API + Anomaly Event","labelPlural":"API Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ApiAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j6","label":"API + Anomaly Event Store","labelPlural":"API Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApiAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApiAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"API + Anomaly Event Store Feed","labelPlural":"API Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07t","label":"API + Event","labelPlural":"API Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEvent/{ID}","describe":"/services/data/v58.0/sobjects/ApiEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QI","label":"API + Event Stream","labelPlural":"API Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ApiEventStream/describe","sobject":"/services/data/v58.0/sobjects/ApiEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XI","label":"App + Analytics Query Request","labelPlural":"App Analytics Query Requests","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"AppAnalyticsQueryRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/{ID}","describe":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/describe","sobject":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06m","label":"App + Definition","labelPlural":"App Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AppDefinition/describe","sobject":"/services/data/v58.0/sobjects/AppDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mg","label":"App + Extension","labelPlural":"App Extensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppExtension/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppExtension/{ID}","describe":"/services/data/v58.0/sobjects/AppExtension/describe","layouts":"/services/data/v58.0/sobjects/AppExtension/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppExtension"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AppExtension","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"App + Extension Change Event","labelPlural":"App Extension Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppExtensionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AppExtensionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DS","label":"AppMenuItem","labelPlural":"AppMenuItems","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/AppMenuItem/describe","sobject":"/services/data/v58.0/sobjects/AppMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06o","label":"App + Tab Member","labelPlural":"App Tab Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppTabMember","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppTabMember/{ID}","describe":"/services/data/v58.0/sobjects/AppTabMember/describe","sobject":"/services/data/v58.0/sobjects/AppTabMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j8","label":"Application + Usage Assignment","labelPlural":"Application Usage Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppUsageAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppUsageAssignment/{ID}","describe":"/services/data/v58.0/sobjects/AppUsageAssignment/describe","layouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppUsageAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0mS","label":"Appointment + Topic Time Slot","labelPlural":"Appointment Topic Time Slots","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe","quickActions":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/quickActions","layouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Topic Time Slot History","labelPlural":"Appointment Topic Time Slot History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"52D","label":"Appointment + Bundle Aggregation Duration Downscale","labelPlural":"Appointment Bundle Aggregation + Duration Downscales","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrDurDnscale","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrDurDnscale","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Duration Downscale Feed","labelPlural":"Appointment Bundle + Aggregation Duration Downscale Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrDurDnscaleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7yi","label":"Appointment + Bundle Aggregation Policy","labelPlural":"Appointment Bundle Aggregation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Policy Feed","labelPlural":"Appointment Bundle Aggregation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Cv","label":"Appointment + Bundle Config","labelPlural":"Appointment Bundle Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleConfig","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfig/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleConfig/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleConfig/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleConfig"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Feed","labelPlural":"Appointment Bundle Config Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config History","labelPlural":"Appointment Bundle Config History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundleConfig","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Share","labelPlural":"Appointment Bundle Config Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sT","label":"Appointment + Bundle Policy","labelPlural":"Appointment Bundle Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Feed","labelPlural":"Appointment Bundle Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundlePolicy","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Share","labelPlural":"Appointment Bundle Policy Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7b0","label":"Appointment + Bundle Policy Service Territory","labelPlural":"Appointment Bundle Policy + Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicySvcTerr","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicySvcTerr","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Service Territory Feed","labelPlural":"Appointment Bundle Policy + Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicySvcTerrFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8XA","label":"Appointment + Bundle Propagation Policy","labelPlural":"Appointment Bundle Propagation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePropagatePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePropagatePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Propagation Policy Feed","labelPlural":"Appointment Bundle Propagation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePropagatePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6KP","label":"Appointment + Bundle Restriction Policy","labelPlural":"Appointment Bundle Restriction Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleRestrictPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleRestrictPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Restriction Policy Feed","labelPlural":"Appointment Bundle Restriction + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleRestrictPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lU","label":"Appointment + Bundle Sort Policy","labelPlural":"Appointment Bundle Sort Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleSortPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleSortPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Sort Policy Feed","labelPlural":"Appointment Bundle Sort Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleSortPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02i","label":"Asset","labelPlural":"Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Asset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Asset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Asset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Asset/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Asset/listviews","describe":"/services/data/v58.0/sobjects/Asset/describe","quickActions":"/services/data/v58.0/sobjects/Asset/quickActions","layouts":"/services/data/v58.0/sobjects/Asset/describe/layouts","sobject":"/services/data/v58.0/sobjects/Asset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nL","label":"Asset + Action","labelPlural":"Asset Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetAction/describe","layouts":"/services/data/v58.0/sobjects/AssetAction/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nM","label":"Asset + Action Source","labelPlural":"Asset Action Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetActionSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetActionSource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetActionSource/describe","layouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetActionSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0oV","label":"Asset + Attribute","labelPlural":"Asset Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetAttribute","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAttribute/{ID}","describe":"/services/data/v58.0/sobjects/AssetAttribute/describe","layouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAttribute"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetAttribute","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Attribute Change Event","labelPlural":"Asset Attribute Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetAttributeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Change Event","labelPlural":"Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gP","label":"Asset + Downtime Period","labelPlural":"Asset Downtime Periods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetDowntimePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriod/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe","quickActions":"/services/data/v58.0/sobjects/AssetDowntimePeriod/quickActions","layouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriod"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period Feed","labelPlural":"Asset Downtime Period Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period History","labelPlural":"Asset Downtime Period History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Feed","labelPlural":"Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + History","labelPlural":"Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1AR","label":"Asset + Relationship","labelPlural":"Asset Relationships","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetRelationship","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetRelationship/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetRelationship/describe","quickActions":"/services/data/v58.0/sobjects/AssetRelationship/quickActions","layouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetRelationship"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship Feed","labelPlural":"Asset Relationship Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship History","labelPlural":"Asset Relationship History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Asset","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"70a","label":"Asset + Share","labelPlural":"Asset Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetShare/{ID}","describe":"/services/data/v58.0/sobjects/AssetShare/describe","sobject":"/services/data/v58.0/sobjects/AssetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nK","label":"Asset + State Period","labelPlural":"Asset State Periods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetStatePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetStatePeriod/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetStatePeriod/describe","layouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetStatePeriod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Li","label":"Asset + Token Event","labelPlural":"Asset Token Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetTokenEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetTokenEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetTokenEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetTokenEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetTokenEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4xo","label":"Asset + Warranty","labelPlural":"Asset Warranties","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetWarranty","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetWarranty/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetWarranty/describe","quickActions":"/services/data/v58.0/sobjects/AssetWarranty/quickActions","layouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetWarranty"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Change Event","labelPlural":"Asset Warranty Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Feed","labelPlural":"Asset Warranty Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty History","labelPlural":"Asset Warranty History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03r","label":"Assigned + Resource","labelPlural":"Assigned Resources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssignedResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssignedResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssignedResource/describe","quickActions":"/services/data/v58.0/sobjects/AssignedResource/quickActions","layouts":"/services/data/v58.0/sobjects/AssignedResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssignedResource"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Change Event","labelPlural":"Assigned Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Feed","labelPlural":"Assigned Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssignedResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Q","label":"Assignment + Rule","labelPlural":"Assignment Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignmentRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignmentRule/{ID}","describe":"/services/data/v58.0/sobjects/AssignmentRule/describe","sobject":"/services/data/v58.0/sobjects/AssignmentRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kt","label":"Associated + Location","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated + Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex + Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async + Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async + Operation Log","labelPlural":"Async Operation Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AsyncOperationLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationLog/{ID}","describe":"/services/data/v58.0/sobjects/AsyncOperationLog/describe","layouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/AsyncOperationLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0YD","label":"Async + Operation Status","labelPlural":"Async Operation Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationStatus/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationStatus/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationStatus/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attached + Content Document","labelPlural":"Attached Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttachedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttachedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/AttachedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/AttachedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00P","label":"Attachment","labelPlural":"Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Attachment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Attachment/{ID}","describe":"/services/data/v58.0/sobjects/Attachment/describe","sobject":"/services/data/v58.0/sobjects/Attachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0tj","label":"Attribute + Definition","labelPlural":"Attribute Definitions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/AttributeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Feed","labelPlural":"Attribute Definition Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition History","labelPlural":"Attribute Definition History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Share","labelPlural":"Attribute Definition Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v5","label":"Attribute + Picklist","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute + Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning + Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura + Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle + Info","labelPlural":"AuraDefinitionBundle Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundleInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ad","label":"AuraDefinition + Info","labelPlural":"AuraDefinition Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07T","label":"Authentication + Configuration","labelPlural":"Authentication Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfig/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfig/describe","sobject":"/services/data/v58.0/sobjects/AuthConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07U","label":"Authentication + Configuration Auth. Provider","labelPlural":"Authentication Configuration + Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfigProviders","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfigProviders/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfigProviders/describe","sobject":"/services/data/v58.0/sobjects/AuthConfigProviders"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SO","label":"Auth. + Provider","labelPlural":"Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthProvider/{ID}","describe":"/services/data/v58.0/sobjects/AuthProvider/describe","sobject":"/services/data/v58.0/sobjects/AuthProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ak","label":"Auth + Session","labelPlural":"Auth Sessions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthSession","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthSession/{ID}","describe":"/services/data/v58.0/sobjects/AuthSession/describe","sobject":"/services/data/v58.0/sobjects/AuthSession"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cI","label":"Authorization + Form","labelPlural":"Authorization Forms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationForm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationForm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationForm/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationForm/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationForm"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cK","label":"Authorization + Form Consent","labelPlural":"Authorization Form Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormConsent/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Change Event","labelPlural":"Authorization Form Consent Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent History","labelPlural":"Authorization Form Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Share","labelPlural":"Authorization Form Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cM","label":"Authorization + Form Data Use","labelPlural":"Authorization Form Data Uses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormDataUse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUse"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormDataUse","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use History","labelPlural":"Authorization Form Data Use History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormDataUse","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use Share","labelPlural":"Authorization Form Data Use Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationForm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form History","labelPlural":"Authorization Form History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationForm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Share","labelPlural":"Authorization Form Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cN","label":"Authorization + Form Text","labelPlural":"Authorization Form Texts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormText/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormText/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormText/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormText"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text Feed","labelPlural":"Authorization Form Text Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text History","labelPlural":"Authorization Form Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08P","label":"Background + Operation","labelPlural":"Background Operations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"BackgroundOperation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BackgroundOperation/{ID}","describe":"/services/data/v58.0/sobjects/BackgroundOperation/describe","layouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/layouts","sobject":"/services/data/v58.0/sobjects/BackgroundOperation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QQ","label":"Batch + Apex Error Platform Event","labelPlural":"Batch Apex Error Platform Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BatchApexErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BatchApexErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BatchApexErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BatchApexErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/BatchApexErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"016","label":"Letterhead","labelPlural":"Letterheads","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandTemplate/{ID}","describe":"/services/data/v58.0/sobjects/BrandTemplate/describe","sobject":"/services/data/v58.0/sobjects/BrandTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lw","label":"Branding + Set","labelPlural":"Branding Sets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSet/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSet/describe","sobject":"/services/data/v58.0/sobjects/BrandingSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ly","label":"Branding + Set Property","labelPlural":"Branding Set Properties","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSetProperty","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSetProperty/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSetProperty/describe","sobject":"/services/data/v58.0/sobjects/BrandingSetProperty"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5LH","label":"Briefcase + Assignment","labelPlural":"Briefcase Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignment/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseAssignment/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseAssignment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Assignment Change Event","labelPlural":"Briefcase Assignment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rY","label":"Briefcase + Definition","labelPlural":"Briefcase Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinition/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseDefinition/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinition"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Definition Change Event","labelPlural":"Briefcase Definition Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinitionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rX","label":"Briefcase + Rule","labelPlural":"Briefcase Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRule/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRule/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rZ","label":"Briefcase + Rule Filter","labelPlural":"Briefcase Rule Filters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRuleFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRuleFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hx","label":"Bulk + API Result Event","labelPlural":"Bulk API Result Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BulkApiResultEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BulkApiResultEvent/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hJ","label":"Bulk + API Result Event Store","labelPlural":"Bulk API Result Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEventStore/{ID}","describe":"/services/data/v58.0/sobjects/BulkApiResultEventStore/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1BU","label":"Business + Brand","labelPlural":"Business Brands","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessBrand","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessBrand/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/BusinessBrand/describe","layouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessBrand"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"BusinessBrand","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Business + Brand Share","labelPlural":"Business Brand Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessBrandShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessBrandShare/{ID}","describe":"/services/data/v58.0/sobjects/BusinessBrandShare/describe","sobject":"/services/data/v58.0/sobjects/BusinessBrandShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01m","label":"Business + Hours","labelPlural":"Business Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessHours/{ID}","describe":"/services/data/v58.0/sobjects/BusinessHours/describe","layouts":"/services/data/v58.0/sobjects/BusinessHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessHours"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"019","label":"Business + Process","labelPlural":"Business Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessProcess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessProcess/{ID}","describe":"/services/data/v58.0/sobjects/BusinessProcess/describe","sobject":"/services/data/v58.0/sobjects/BusinessProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"023","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Calendar","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Calendar/{ID}","describe":"/services/data/v58.0/sobjects/Calendar/describe","sobject":"/services/data/v58.0/sobjects/Calendar"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03A","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarView","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarView/{ID}","describe":"/services/data/v58.0/sobjects/CalendarView/describe","sobject":"/services/data/v58.0/sobjects/CalendarView"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CalendarView","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Calendar + Share","labelPlural":"Calendar Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarViewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarViewShare/{ID}","describe":"/services/data/v58.0/sobjects/CalendarViewShare/describe","sobject":"/services/data/v58.0/sobjects/CalendarViewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04v","label":"Call + Center","labelPlural":"Call Centers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCenter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCenter/{ID}","describe":"/services/data/v58.0/sobjects/CallCenter/describe","sobject":"/services/data/v58.0/sobjects/CallCenter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hn","label":"CallCoachingMediaProvider","labelPlural":"CallCoachingMediaProviders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCoachingMediaProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/{ID}","describe":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/describe","sobject":"/services/data/v58.0/sobjects/CallCoachingMediaProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"701","label":"Campaign","labelPlural":"Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Campaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Campaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Campaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Campaign/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Campaign/listviews","describe":"/services/data/v58.0/sobjects/Campaign/describe","quickActions":"/services/data/v58.0/sobjects/Campaign/quickActions","layouts":"/services/data/v58.0/sobjects/Campaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/Campaign"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Change Event","labelPlural":"Campaign Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Feed","labelPlural":"Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/CampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/CampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Field History","labelPlural":"Campaign Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/CampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/CampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03V","label":"Campaign + Influence Model","labelPlural":"Campaign Influence Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignInfluenceModel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignInfluenceModel/{ID}","describe":"/services/data/v58.0/sobjects/CampaignInfluenceModel/describe","sobject":"/services/data/v58.0/sobjects/CampaignInfluenceModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00v","label":"Campaign + Member","labelPlural":"Campaign Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMember/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMember/describe","layouts":"/services/data/v58.0/sobjects/CampaignMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Change Event","labelPlural":"Campaign Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Y","label":"Campaign + Member Status","labelPlural":"Campaign Member Statuses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatus","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatus/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe","layouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMemberStatus","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Status Change Event","labelPlural":"Campaign Member Status Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatusChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Campaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08s","label":"Campaign + Share","labelPlural":"Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/CampaignShare/describe","sobject":"/services/data/v58.0/sobjects/CampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03O","label":"Card + Payment Method","labelPlural":"Card Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CardPaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CardPaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/CardPaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/CardPaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/CardPaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"500","label":"Case","labelPlural":"Cases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Case","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Case/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Case/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Case/describe/approvalLayouts","caseArticleSuggestions":"/services/data/v58.0/sobjects/Case/suggestedArticles","caseRowArticleSuggestions":"/services/data/v58.0/sobjects/Case/{ID}/suggestedArticles","listviews":"/services/data/v58.0/sobjects/Case/listviews","describe":"/services/data/v58.0/sobjects/Case/describe","quickActions":"/services/data/v58.0/sobjects/Case/quickActions","layouts":"/services/data/v58.0/sobjects/Case/describe/layouts","sobject":"/services/data/v58.0/sobjects/Case"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Change Event","labelPlural":"Case Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CaseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CaseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CaseChangeEvent"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Case + Comment","labelPlural":"Case Comments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseComment/{ID}","describe":"/services/data/v58.0/sobjects/CaseComment/describe","layouts":"/services/data/v58.0/sobjects/CaseComment/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03j","label":"Case + Contact Role","labelPlural":"Case Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseContactRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseContactRole/describe","layouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Feed","labelPlural":"Case Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseFeed/{ID}","describe":"/services/data/v58.0/sobjects/CaseFeed/describe","sobject":"/services/data/v58.0/sobjects/CaseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + History","labelPlural":"Case History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseHistory/{ID}","describe":"/services/data/v58.0/sobjects/CaseHistory/describe","sobject":"/services/data/v58.0/sobjects/CaseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"555","label":"Case + Milestone","labelPlural":"Case Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseMilestone","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseMilestone/{ID}","describe":"/services/data/v58.0/sobjects/CaseMilestone/describe","layouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseMilestone"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01n","label":"Case + Share","labelPlural":"Case Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseShare/{ID}","describe":"/services/data/v58.0/sobjects/CaseShare/describe","sobject":"/services/data/v58.0/sobjects/CaseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"010","label":"Case + Solution","labelPlural":"Case Solution","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseSolution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseSolution/{ID}","describe":"/services/data/v58.0/sobjects/CaseSolution/describe","sobject":"/services/data/v58.0/sobjects/CaseSolution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Status Value","labelPlural":"Case Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseStatus/{ID}","describe":"/services/data/v58.0/sobjects/CaseStatus/describe","sobject":"/services/data/v58.0/sobjects/CaseStatus"}},{"activateable":false,"associateEntityType":"TeamMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member","labelPlural":"Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamMember"}},{"activateable":false,"associateEntityType":"TeamRole","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member Role","labelPlural":"Case Team Member Role","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamRole/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamRole"}},{"activateable":false,"associateEntityType":"TeamTemplate","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team","labelPlural":"Predefined Case Team","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplate/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplate/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplate"}},{"activateable":false,"associateEntityType":"TeamTemplateMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Member","labelPlural":"Predefined Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateMember"}},{"activateable":false,"associateEntityType":"TeamTemplateRecord","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Record","labelPlural":"Predefined Case Team Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02o","label":"Category + Data","labelPlural":"Category Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryData/{ID}","describe":"/services/data/v58.0/sobjects/CategoryData/describe","sobject":"/services/data/v58.0/sobjects/CategoryData"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02n","label":"Category + Node","labelPlural":"Category Nodes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryNode/{ID}","describe":"/services/data/v58.0/sobjects/CategoryNode/describe","sobject":"/services/data/v58.0/sobjects/CategoryNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ca","label":"Chatter + Activity","labelPlural":"Chatter Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterActivity/{ID}","describe":"/services/data/v58.0/sobjects/ChatterActivity/describe","sobject":"/services/data/v58.0/sobjects/ChatterActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MY","label":"Extension","labelPlural":"Extensions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtension/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtension/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtension"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ob","label":"Chatter + Extension Configuration","labelPlural":"Chatter Extension Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtensionConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtensionConfig/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtensionConfig/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtensionConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"713","label":"Client + Browser","labelPlural":"Client Browser","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ClientBrowser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ClientBrowser/{ID}","describe":"/services/data/v58.0/sobjects/ClientBrowser/describe","sobject":"/services/data/v58.0/sobjects/ClientBrowser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0F9","label":"Group","labelPlural":"Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroup/{ID}","listviews":"/services/data/v58.0/sobjects/CollaborationGroup/listviews","describe":"/services/data/v58.0/sobjects/CollaborationGroup/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CollaborationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Group + Feed","labelPlural":"Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FB","label":"Group + Member","labelPlural":"Group Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMember/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I5","label":"Group + Member Request","labelPlural":"Group Member Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMemberRequest","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Aa","label":"Group + Record","labelPlural":"Group Records","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupRecord/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H1","label":"Chatter + Invitation","labelPlural":"Chatter Invitations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationInvitation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationInvitation/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationInvitation/describe","sobject":"/services/data/v58.0/sobjects/CollaborationInvitation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9CR","label":"Collaboration + Room","labelPlural":"Collaboration Rooms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationRoom","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationRoom/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationRoom/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationRoom/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationRoom"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05k","label":"Color + Definition","labelPlural":"Color Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ColorDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ColorDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ColorDefinition/describe","sobject":"/services/data/v58.0/sobjects/ColorDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note, + Attachment, Google Doc And File","labelPlural":"Notes, Attachments, Google + Docs And Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CombinedAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CombinedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/CombinedAttachment/describe","sobject":"/services/data/v58.0/sobjects/CombinedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xl","label":"Communication + Subscription","labelPlural":"Communication Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscription/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscription/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscription/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscription/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eB","label":"Communication + Subscription Channel Type","labelPlural":"Communication Subscription Channel + Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Feed","labelPlural":"Communication Subscription + Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type History","labelPlural":"Communication Subscription + Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Share","labelPlural":"Communication Subscription + Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dY","label":"Communication + Subscription Consent","labelPlural":"Communication Subscription Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionConsent/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Change Event","labelPlural":"Communication Subscription + Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Feed","labelPlural":"Communication Subscription Consent + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent History","labelPlural":"Communication Subscription Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Share","labelPlural":"Communication Subscription Consent + Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Feed","labelPlural":"Communication Subscription Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription History","labelPlural":"Communication Subscription History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscription","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Share","labelPlural":"Communication Subscription Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0al","label":"Communication + Subscription Timing","labelPlural":"Communication Subscription Timings","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionTiming","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTiming/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionTiming/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTiming"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing Feed","labelPlural":"Communication Subscription Timing + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing History","labelPlural":"Communication Subscription Timing History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09a","label":"Zone","labelPlural":"Zones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Community","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Community/{ID}","describe":"/services/data/v58.0/sobjects/Community/describe","sobject":"/services/data/v58.0/sobjects/Community"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QR","label":"Concurrent + Long Running Apex Error Event","labelPlural":"Concurrent Long Running Apex + Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConcurLongRunApexErrEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/describe","sobject":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ah","label":"Conference + Number","labelPlural":"Conference Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConferenceNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConferenceNumber/{ID}","describe":"/services/data/v58.0/sobjects/ConferenceNumber/describe","sobject":"/services/data/v58.0/sobjects/ConferenceNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H4","label":"Connected + App","labelPlural":"Connected Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConnectedApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConnectedApplication/{ID}","describe":"/services/data/v58.0/sobjects/ConnectedApplication/describe","sobject":"/services/data/v58.0/sobjects/ConnectedApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mo","label":"Consumption + Rate","labelPlural":"Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionRate/describe","layouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionRate"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionRate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Rate History ID","labelPlural":"Consumption Rate History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionRateHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionRateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mh","label":"Consumption + Schedule","labelPlural":"Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionSchedule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe","quickActions":"/services/data/v58.0/sobjects/ConsumptionSchedule/quickActions","layouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionSchedule"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ConsumptionSchedule","labelPlural":"ConsumptionSchedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule History ID","labelPlural":"Consumption Schedule History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ConsumptionSchedule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule Share","labelPlural":"Consumption Schedule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"003","label":"Contact","labelPlural":"Contacts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Contact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contact/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contact/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contact/listviews","describe":"/services/data/v58.0/sobjects/Contact/describe","quickActions":"/services/data/v58.0/sobjects/Contact/quickActions","layouts":"/services/data/v58.0/sobjects/Contact/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contact"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Change Event","labelPlural":"Contact Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CC","label":"Contact + Clean Info","labelPlural":"Contact Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/ContactCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/ContactCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Feed","labelPlural":"Contact Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContactFeed/describe","sobject":"/services/data/v58.0/sobjects/ContactFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + History","labelPlural":"Contact History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8lW","label":"Contact + Point Address","labelPlural":"Contact Point Addresses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddress/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointAddress/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointAddress/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointAddress"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Change Event","labelPlural":"Contact Point Address Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address History","labelPlural":"Contact Point Address History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointAddress","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Share","labelPlural":"Contact Point Address Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZX","label":"Contact + Point Consent","labelPlural":"Contact Point Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Change Event","labelPlural":"Contact Point Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent History","labelPlural":"Contact Point Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Share","labelPlural":"Contact Point Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Vl","label":"Contact + Point Email","labelPlural":"Contact Point Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmail/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointEmail/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointEmail/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Change Event","labelPlural":"Contact Point Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email History","labelPlural":"Contact Point Email History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Share","labelPlural":"Contact Point Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ow","label":"Contact + Point Phone","labelPlural":"Contact Point Phones","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointPhone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointPhone/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointPhone/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointPhone"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Change Event","labelPlural":"Contact Point Phone Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone History","labelPlural":"Contact Point Phone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointPhone","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Share","labelPlural":"Contact Point Phone Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZY","label":"Contact + Point Type Consent","labelPlural":"Contact Point Type Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointTypeConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Change Event","labelPlural":"Contact Point Type Consent + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent History","labelPlural":"Contact Point Type Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointTypeConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Share","labelPlural":"Contact Point Type Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tz","label":"Contact + Request","labelPlural":"Contact Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactRequest/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequest/describe","layouts":"/services/data/v58.0/sobjects/ContactRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Request Share","labelPlural":"Contact Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ContactRequestShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03s","label":"Contact + Share","labelPlural":"Contact Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactShare/describe","sobject":"/services/data/v58.0/sobjects/ContactShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03S","label":"Asset + File","labelPlural":"Asset Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentAsset/{ID}","describe":"/services/data/v58.0/sobjects/ContentAsset/describe","sobject":"/services/data/v58.0/sobjects/ContentAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05T","label":"Content + Body","labelPlural":"Content Bodies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentBody","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentBody/{ID}","describe":"/services/data/v58.0/sobjects/ContentBody/describe","sobject":"/services/data/v58.0/sobjects/ContentBody"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05D","label":"Content + Delivery","labelPlural":"Content Deliveries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistribution","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistribution/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistribution/describe","sobject":"/services/data/v58.0/sobjects/ContentDistribution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05H","label":"Content + Delivery View","labelPlural":"Content Delivery Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistributionView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistributionView/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistributionView/describe","sobject":"/services/data/v58.0/sobjects/ContentDistributionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"069","label":"Content + Document","labelPlural":"Content Documents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContentDocument","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocument/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocument/describe","layouts":"/services/data/v58.0/sobjects/ContentDocument/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocument"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Change Event","labelPlural":"Content Document Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ContentDocument + Feed","labelPlural":"ContentDocument Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentFeed/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document History","labelPlural":"Content Document History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06A","label":"Content + Document Link","labelPlural":"Content Document Link","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentLink/describe","layouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocumentLink"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocumentLink","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Link Change Event","labelPlural":"Content Document Link Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLinkChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"057","label":"Content + Document Subscription","labelPlural":"Content Document Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07H","label":"Content + Folder","labelPlural":"Content Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolder/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolder/describe","sobject":"/services/data/v58.0/sobjects/ContentFolder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Folder Item","labelPlural":"Content Folder Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentFolderItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentFolderItem/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderItem/describe","layouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentFolderItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07v","label":"Content + Folder Link","labelPlural":"Content Folder Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderLink/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07I","label":"Content + Folder Member","labelPlural":"Content Folder Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderMember/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05V","label":"Content + Notification","labelPlural":"Content Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentNotification/{ID}","describe":"/services/data/v58.0/sobjects/ContentNotification/describe","sobject":"/services/data/v58.0/sobjects/ContentNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05Q","label":"Content + Tag Subscription","labelPlural":"Content Tag Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentTagSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentTagSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentTagSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentTagSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05S","label":"Content + User Subscription","labelPlural":"Content User Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentUserSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentUserSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentUserSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentUserSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"068","label":"Content + Version","labelPlural":"Content Versions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentVersion/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentVersion/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersion/describe","layouts":"/services/data/v58.0/sobjects/ContentVersion/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentVersion"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version Change Event","labelPlural":"Content Version Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05C","label":"Content + Version Comment","labelPlural":"Content Version Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionComment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionComment/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionComment/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionComment"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version History","labelPlural":"Content Version History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05J","label":"Content + Version Rating","labelPlural":"Content Version Ratings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionRating","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionRating/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionRating/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionRating"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"058","label":"Library","labelPlural":"Libraries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspace","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspace/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspace/describe","layouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentWorkspace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"059","label":"Library + Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library + Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library + Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract + Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + History","labelPlural":"Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"811","label":"Contract + Line Item","labelPlural":"Contract Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineItem/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Change Event","labelPlural":"Contract Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Feed","labelPlural":"Contract Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item History","labelPlural":"Contract Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3lp","label":"Contract + Line Outcome","labelPlural":"Contract Line Outcomes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcome","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcome/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcome/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineOutcome/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcome"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sD","label":"Contract + Line Outcome Data","labelPlural":"Contract Line Outcome Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcomeData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeData/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe","layouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineOutcomeData","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Data Change Event","labelPlural":"Contract Line Outcome Data + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeDataChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential + Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential + Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential + Stuffing Event Store Feed","labelPlural":"Credential Stuffing Event Store + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"50g","label":"Credit + Memo","labelPlural":"Credit Memos","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CreditMemo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemo/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemo/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemo/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemo/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Feed","labelPlural":"Credit Memo Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo History","labelPlural":"Credit Memo History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4sF","label":"Credit + Memo Invoice Application","labelPlural":"Credit Memo Invoice Applications","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplication","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplication/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoInvApplication/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplication"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Invoice Application History","labelPlural":"Credit Memo Invoice Application History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9yx","label":"Credit + Memo Line","labelPlural":"Credit Memo Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoLine/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoLine/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line Feed","labelPlural":"Credit Memo Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line History","labelPlural":"Credit Memo Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CreditMemo","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Share","labelPlural":"Credit Memo Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoShare/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoShare/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08a","label":"Cron + Job","labelPlural":"Cron Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronJobDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronJobDetail/{ID}","describe":"/services/data/v58.0/sobjects/CronJobDetail/describe","sobject":"/services/data/v58.0/sobjects/CronJobDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08e","label":"Scheduled + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom + Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom + Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom + Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom + Help Menu Section","labelPlural":"Custom Help Menu Sections","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuSection","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuSection/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuSection/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuSection"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XH","label":"Custom + HTTP Header","labelPlural":"Custom HTTP Headers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomHttpHeader","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomHttpHeader/{ID}","describe":"/services/data/v58.0/sobjects/CustomHttpHeader/describe","layouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomHttpHeader"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ML","label":"Custom + Notification Type","labelPlural":"Custom Notification Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomNotificationType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomNotificationType/{ID}","describe":"/services/data/v58.0/sobjects/CustomNotificationType/describe","sobject":"/services/data/v58.0/sobjects/CustomNotificationType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3NA","label":"Custom + Object Usage By User License Metric","labelPlural":"Custom Object Usage By + User License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomObjectUserLicenseMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/{ID}","describe":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/describe","sobject":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CP","label":"Custom + Permission","labelPlural":"Custom Permissions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermission/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermission/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermission/describe","layouts":"/services/data/v58.0/sobjects/CustomPermission/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PD","label":"Custom + Permission Dependency","labelPlural":"Custom Permission Dependencies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermissionDependency","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermissionDependency/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe","layouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermissionDependency"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0o6","label":"Customer","labelPlural":"Customers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Customer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Customer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Customer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Customer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Customer/describe","layouts":"/services/data/v58.0/sobjects/Customer/describe/layouts","sobject":"/services/data/v58.0/sobjects/Customer"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Customer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Customer + Share","labelPlural":"Customer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomerShare/{ID}","describe":"/services/data/v58.0/sobjects/CustomerShare/describe","sobject":"/services/data/v58.0/sobjects/CustomerShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06E","label":"D&B + Company","labelPlural":"D&B Companies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DandBCompany","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Z","label":"Dashboard","labelPlural":"Dashboards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Dashboard","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Dashboard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Dashboard/{ID}","listviews":"/services/data/v58.0/sobjects/Dashboard/listviews","describe":"/services/data/v58.0/sobjects/Dashboard/describe","layouts":"/services/data/v58.0/sobjects/Dashboard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Dashboard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01a","label":"Dashboard + Component","labelPlural":"Dashboard Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponent/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponent/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"DashboardComponent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Component Feed","labelPlural":"Dashboard Component Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponentFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponentFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponentFeed"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Dashboard","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Feed","labelPlural":"Dashboard Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03Q","label":"Data + Assessment Field Metric","labelPlural":"Data Assessment Field Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentFieldMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03P","label":"Data + Assessment Metric","labelPlural":"Data Assessment Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03R","label":"Data + Assessment Field Value Metric","labelPlural":"Data Assessment Field Value + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentValueMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentValueMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1e5","label":"Data + Object Data Change Event","labelPlural":"Data Object Data Change Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataObjectDataChgEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/describe","sobject":"/services/data/v58.0/sobjects/DataObjectDataChgEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05a","label":"Data + Statistics","labelPlural":"Data Statistics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataStatistics","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataStatistics/{ID}","describe":"/services/data/v58.0/sobjects/DataStatistics/describe","sobject":"/services/data/v58.0/sobjects/DataStatistics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4dt","label":"Data + Type","labelPlural":"Data Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataType/{ID}","describe":"/services/data/v58.0/sobjects/DataType/describe","sobject":"/services/data/v58.0/sobjects/DataType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZT","label":"Data + Use Legal Basis","labelPlural":"Data Use Legal Bases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUseLegalBasis","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasis/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe","layouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasis"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUseLegalBasis","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis History","labelPlural":"Data Use Legal Basis History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUseLegalBasis","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis Share","labelPlural":"Data Use Legal Basis Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZW","label":"Data + Use Purpose","labelPlural":"Data Use Purposes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUsePurpose","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUsePurpose/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUsePurpose/describe","quickActions":"/services/data/v58.0/sobjects/DataUsePurpose/quickActions","layouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUsePurpose"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUsePurpose","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose History","labelPlural":"Data Use Purpose History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUsePurpose","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose Share","labelPlural":"Data Use Purpose Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeShare/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07m","label":"Data.com + Address","labelPlural":"Data.com Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudAddress","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudAddress/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudAddress/describe","sobject":"/services/data/v58.0/sobjects/DatacloudAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09K","label":"Data.com + Company","labelPlural":"Data.com Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08C","label":"Data.com + Contact","labelPlural":"Data.com Contacts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudContact","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudContact/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudContact/describe","sobject":"/services/data/v58.0/sobjects/DatacloudContact"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09N","label":"D&B + Company","labelPlural":"DandB Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudDandBCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudDandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudDandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09O","label":"Data.com + Owned Entity","labelPlural":"Data.com Owned Entity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudOwnedEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/describe","sobject":"/services/data/v58.0/sobjects/DatacloudOwnedEntity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09F","label":"Data.com + Usage","labelPlural":"Data.com Usage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudPurchaseUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/describe","sobject":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Declined + Event Relation","labelPlural":"Declined Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeclinedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeclinedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/DeclinedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/DeclinedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00C","label":"Recycle + Bin Item","labelPlural":"Recycle Bin","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeleteEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeleteEvent/{ID}","describe":"/services/data/v58.0/sobjects/DeleteEvent/describe","sobject":"/services/data/v58.0/sobjects/DeleteEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DS","label":"Digital + Signature","labelPlural":"Digital Signatures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignature","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignature/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DigitalSignature/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DigitalSignature/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignature"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"DigitalSignature","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Digital + Signature Change Event","labelPlural":"Digital Signature Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignatureChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DW","label":"Digital + Wallet","labelPlural":"Digital Wallets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DigitalWallet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DigitalWallet/{ID}","describe":"/services/data/v58.0/sobjects/DigitalWallet/describe","quickActions":"/services/data/v58.0/sobjects/DigitalWallet/quickActions","layouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DigitalWallet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"015","label":"Document","labelPlural":"Documents","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Document","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Document/{ID}","describe":"/services/data/v58.0/sobjects/Document/describe","sobject":"/services/data/v58.0/sobjects/Document"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05X","label":"Document + Entity Map","labelPlural":"Document Entity Map","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DocumentAttachmentMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DocumentAttachmentMap/{ID}","describe":"/services/data/v58.0/sobjects/DocumentAttachmentMap/describe","sobject":"/services/data/v58.0/sobjects/DocumentAttachmentMap"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I4","label":"Domain","labelPlural":"Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Domain","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Domain/{ID}","describe":"/services/data/v58.0/sobjects/Domain/describe","sobject":"/services/data/v58.0/sobjects/Domain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jf","label":"Custom + URL","labelPlural":"Custom URLs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DomainSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DomainSite/{ID}","describe":"/services/data/v58.0/sobjects/DomainSite/describe","sobject":"/services/data/v58.0/sobjects/DomainSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GL","label":"Duplicate + Record Item","labelPlural":"Duplicate Record Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DuplicateRecordItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GK","label":"Duplicate + Record Set","labelPlural":"Duplicate Record Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRecordSet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordSet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bm","label":"Duplicate + Rule","labelPlural":"Duplicate Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRule/{ID}","describe":"/services/data/v58.0/sobjects/DuplicateRule/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06F","label":"EmailCapture","labelPlural":"Email + Captures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailCapture","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailCapture/{ID}","describe":"/services/data/v58.0/sobjects/EmailCapture/describe","sobject":"/services/data/v58.0/sobjects/EmailCapture"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T6","label":"Email + Domain Filter","labelPlural":"Email Domain Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainFilter/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainFilter/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09P","label":"Email + Domain Key","labelPlural":"Email Domain Keys","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainKey","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainKey/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainKey/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainKey"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02s","label":"Email + Message","labelPlural":"Email Messages","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EmailMessage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailMessage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EmailMessage/describe","quickActions":"/services/data/v58.0/sobjects/EmailMessage/quickActions","layouts":"/services/data/v58.0/sobjects/EmailMessage/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailMessage"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailMessage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Message Change Event","labelPlural":"Email Message Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CZ","label":"Email + Message Relation","labelPlural":"Email Message Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageRelation/{ID}","describe":"/services/data/v58.0/sobjects/EmailMessageRelation/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"26Z","label":"Email + Relay","labelPlural":"Email Relay","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailRelay","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailRelay/{ID}","describe":"/services/data/v58.0/sobjects/EmailRelay/describe","sobject":"/services/data/v58.0/sobjects/EmailRelay"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"093","label":"Email + Services Address","labelPlural":"Email Services Address","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesAddress/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesAddress/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"091","label":"Email + Service","labelPlural":"Email Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesFunction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesFunction/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesFunction/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"018","label":"Email + Status","labelPlural":"Email Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailStatus/{ID}","describe":"/services/data/v58.0/sobjects/EmailStatus/describe","sobject":"/services/data/v58.0/sobjects/EmailStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00X","label":"Email + Template","labelPlural":"Email Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EmailTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EmailTemplate/describe","layouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Template Change Event","labelPlural":"Email Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lq","label":"Embedded + Service","labelPlural":"Embedded Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uu","label":"Embedded + Service Label","labelPlural":"Embedded Service Labels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceLabel","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceLabel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eF","label":"Engagement + Channel Type","labelPlural":"Engagement Channel Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EngagementChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EngagementChannelType/describe","quickActions":"/services/data/v58.0/sobjects/EngagementChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/EngagementChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Feed","labelPlural":"Engagement Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type History","labelPlural":"Engagement Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"EngagementChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Share","labelPlural":"Engagement Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rn","label":"Enhanced + Letterhead","labelPlural":"Enhanced Letterheads","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EnhancedLetterhead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterhead/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe","layouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/layouts","sobject":"/services/data/v58.0/sobjects/EnhancedLetterhead"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EnhancedLetterhead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Enhanced + Letterhead Feed","labelPlural":"Enhanced Letterhead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EnhancedLetterheadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/describe","sobject":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"550","label":"Entitlement","labelPlural":"Entitlements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Entitlement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Entitlement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Entitlement/describe","layouts":"/services/data/v58.0/sobjects/Entitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/Entitlement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Change Event","labelPlural":"Entitlement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EntitlementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EntitlementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EntitlementChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E7","label":"Entitlement + Contact","labelPlural":"Entitlement Contacts","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntitlementContact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntitlementContact/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementContact/describe","layouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntitlementContact"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Feed","labelPlural":"Entitlement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementFeed/describe","sobject":"/services/data/v58.0/sobjects/EntitlementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + History","labelPlural":"Entitlement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementHistory/describe","sobject":"/services/data/v58.0/sobjects/EntitlementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"551","label":"Entitlement + Template","labelPlural":"Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/EntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ie","label":"Entity + Definition","labelPlural":"Entity Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityDefinition/{ID}","describe":"/services/data/v58.0/sobjects/EntityDefinition/describe","sobject":"/services/data/v58.0/sobjects/EntityDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1EM","label":"Object + Milestone","labelPlural":"Object Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntityMilestone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntityMilestone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EntityMilestone/describe","quickActions":"/services/data/v58.0/sobjects/EntityMilestone/quickActions","layouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntityMilestone"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone Feed","labelPlural":"Object Milestone Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneFeed/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone History","labelPlural":"Object Milestone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneHistory/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nv","label":"Entity + Particle","labelPlural":"Entity Particles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityParticle","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityParticle/{ID}","describe":"/services/data/v58.0/sobjects/EntityParticle/describe","sobject":"/services/data/v58.0/sobjects/EntityParticle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E8","label":"Entity + Subscription","labelPlural":"Entity Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitySubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitySubscription/{ID}","describe":"/services/data/v58.0/sobjects/EntitySubscription/describe","sobject":"/services/data/v58.0/sobjects/EntitySubscription"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Error_Log__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Log","labelPlural":"Change Event: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Error_Log__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Error Log","labelPlural":"Share: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__Share/{ID}","describe":"/services/data/v58.0/sobjects/Error_Log__Share/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1M","label":"Error + Log","labelPlural":"Connection Error Log","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Error_Log__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Error_Log__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Error_Log__c/describe","quickActions":"/services/data/v58.0/sobjects/Error_Log__c/quickActions","layouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Error_Log__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00U","label":"Event","labelPlural":"Events","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Event","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Event/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Event/{ID}","eventSeriesUpdates":"/services/data/v58.0/sobjects/Event/{ID}/fromThisEventOnwards","describe":"/services/data/v58.0/sobjects/Event/describe","quickActions":"/services/data/v58.0/sobjects/Event/quickActions","layouts":"/services/data/v58.0/sobjects/Event/describe/layouts","sobject":"/services/data/v58.0/sobjects/Event"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cd","label":"Platform + Event Subscription","labelPlural":"Platform Event Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventBusSubscriber","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventBusSubscriber/{ID}","describe":"/services/data/v58.0/sobjects/EventBusSubscriber/describe","sobject":"/services/data/v58.0/sobjects/EventBusSubscriber"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Change Event","labelPlural":"Event Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Feed","labelPlural":"Event Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventFeed/{ID}","describe":"/services/data/v58.0/sobjects/EventFeed/describe","sobject":"/services/data/v58.0/sobjects/EventFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AT","label":"Event + Log File","labelPlural":"Event Log Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventLogFile","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventLogFile/{ID}","describe":"/services/data/v58.0/sobjects/EventLogFile/describe","sobject":"/services/data/v58.0/sobjects/EventLogFile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0RE","label":"Event + Relation","labelPlural":"Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelation/{ID}","describe":"/services/data/v58.0/sobjects/EventRelation/describe","sobject":"/services/data/v58.0/sobjects/EventRelation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relation Change Event","labelPlural":"Event Relation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k2","label":"Event + Relay Config","labelPlural":"Event Relay Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfig/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayConfig/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfig"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelayConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relay Config Change Event","labelPlural":"Event Relay Config Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfigChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k4","label":"Event + Relay Feedback","labelPlural":"Event Relay Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayFeedback/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayFeedback/describe","sobject":"/services/data/v58.0/sobjects/EventRelayFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1V4","label":"Expense","labelPlural":"Expenses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Expense","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Expense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Expense/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Expense/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Expense/describe","quickActions":"/services/data/v58.0/sobjects/Expense/quickActions","layouts":"/services/data/v58.0/sobjects/Expense/describe/layouts","sobject":"/services/data/v58.0/sobjects/Expense"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Change Event","labelPlural":"Expense Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ExpenseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ExpenseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ExpenseChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Feed","labelPlural":"Expense Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + History","labelPlural":"Expense History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6g5","label":"Expense + Report","labelPlural":"Expense Reports","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReport/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExpenseReport/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReport/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReport"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3zl","label":"Expense + Report Entry","labelPlural":"Expense Report Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReportEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntry/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReportEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntry"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry Feed","labelPlural":"Expense Report Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry History","labelPlural":"Expense Report Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Feed","labelPlural":"Expense Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report History","labelPlural":"Expense Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExpenseReport","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Share","labelPlural":"Expense Report Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Expense","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Share","labelPlural":"Expense Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1GS","label":"ExpressionFilter","labelPlural":"ExpressionFilters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilter/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilter/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8BM","label":"ExpressionFilterCriteria","labelPlural":"ExpressionFilterCriteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilterCriteria"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pz","label":"Expression + Set View","labelPlural":"Expression Set Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionSetView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionSetView/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionSetView/describe","sobject":"/services/data/v58.0/sobjects/ExpressionSetView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XC","label":"External + Data Source","labelPlural":"External Data Sources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ExternalDataSource","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSource/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSource/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6Ay","label":"External + Data Source Descriptor","labelPlural":"External Data Source Descriptors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataSrcDescriptor","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XU","label":"External + Data User Authentication","labelPlural":"External Data User Authentications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataUserAuth","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataUserAuth/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataUserAuth/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataUserAuth"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AY","label":"External + Event","labelPlural":"External Events","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ExternalEvent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExternalEvent/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEvent/describe","layouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExternalEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08N","label":"External + Event Mapping","labelPlural":"External Event Mappings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMapping","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMapping/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExternalEventMapping/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExternalEventMapping/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMapping"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExternalEventMapping","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"External + Event Mapping Share","labelPlural":"External Event Mapping Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMappingShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMappingShare/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEventMappingShare/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMappingShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08M","label":"Feed + Attachment","labelPlural":"Feed Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedAttachment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/FeedAttachment/describe","sobject":"/services/data/v58.0/sobjects/FeedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D7","label":"Feed + Comment","labelPlural":"Feed Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedComment/{ID}","describe":"/services/data/v58.0/sobjects/FeedComment/describe","sobject":"/services/data/v58.0/sobjects/FeedComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D5","label":"Feed + Item","labelPlural":"Feed Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FeedItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedItem/{ID}","describe":"/services/data/v58.0/sobjects/FeedItem/describe","quickActions":"/services/data/v58.0/sobjects/FeedItem/quickActions","layouts":"/services/data/v58.0/sobjects/FeedItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FeedItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I0","label":"Feed + Like","labelPlural":"Feed Likes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedLike","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedLike/{ID}","describe":"/services/data/v58.0/sobjects/FeedLike/describe","sobject":"/services/data/v58.0/sobjects/FeedLike"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09A","label":"Feed + Poll Choice","labelPlural":"Feed Poll Choices","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollChoice","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollChoice/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollChoice/describe","sobject":"/services/data/v58.0/sobjects/FeedPollChoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09B","label":"Feed + Poll Vote","labelPlural":"Feed Poll Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollVote","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollVote/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollVote/describe","sobject":"/services/data/v58.0/sobjects/FeedPollVote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08U","label":"Feed + Revision","labelPlural":"Feed Revisions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedRevision","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedRevision/{ID}","describe":"/services/data/v58.0/sobjects/FeedRevision/describe","sobject":"/services/data/v58.0/sobjects/FeedRevision"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QJ","label":"Feed + Signal","labelPlural":"Feed Signals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedSignal","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedSignal/{ID}","describe":"/services/data/v58.0/sobjects/FeedSignal/describe","sobject":"/services/data/v58.0/sobjects/FeedSignal"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D6","label":"Feed + Tracked Change","labelPlural":"Feed Tracked Changes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedTrackedChange","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedTrackedChange/{ID}","describe":"/services/data/v58.0/sobjects/FeedTrackedChange/describe","sobject":"/services/data/v58.0/sobjects/FeedTrackedChange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fe","label":"Field + Definition","labelPlural":"Field Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldDefinition/{ID}","describe":"/services/data/v58.0/sobjects/FieldDefinition/describe","sobject":"/services/data/v58.0/sobjects/FieldDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01k","label":"Field + Permissions","labelPlural":"Field Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldPermissions/{ID}","describe":"/services/data/v58.0/sobjects/FieldPermissions/describe","sobject":"/services/data/v58.0/sobjects/FieldPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Security Classification","labelPlural":"Field Security Classifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldSecurityClassification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldSecurityClassification/{ID}","describe":"/services/data/v58.0/sobjects/FieldSecurityClassification/describe","sobject":"/services/data/v58.0/sobjects/FieldSecurityClassification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mf","label":"Field + Service Mobile Settings","labelPlural":"Field Service Mobile Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe","layouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/layouts","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettings"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FieldServiceMobileSettings","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Service Mobile Settings Change Event","labelPlural":"Field Service Mobile + Settings Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettingsChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UJ","label":"Field + Service Org Settings","labelPlural":"Field Service Org Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceOrgSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceOrgSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0vI","label":"File + Event","labelPlural":"File Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FileEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FileEvent/describe","sobject":"/services/data/v58.0/sobjects/FileEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0wg","label":"File + Event Store","labelPlural":"File Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEventStore/{ID}","describe":"/services/data/v58.0/sobjects/FileEventStore/describe","sobject":"/services/data/v58.0/sobjects/FileEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06h","label":"FileSearchActivity","labelPlural":"File + Search Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileSearchActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileSearchActivity/{ID}","describe":"/services/data/v58.0/sobjects/FileSearchActivity/describe","sobject":"/services/data/v58.0/sobjects/FileSearchActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2kA","label":"Finance + Balance Snapshot","labelPlural":"Finance Balance Snapshots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceBalanceSnapshot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe","quickActions":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceBalanceSnapshot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Change Event","labelPlural":"Finance Balance Snapshot Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceBalanceSnapshot","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Share","labelPlural":"Finance Balance Snapshot Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0n3","label":"Finance + Transaction","labelPlural":"Finance Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceTransaction/describe","quickActions":"/services/data/v58.0/sobjects/FinanceTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceTransaction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Change Event","labelPlural":"Finance Transaction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceTransaction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Share","labelPlural":"Finance Transaction Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceTransactionShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"022","label":"Fiscal + Year Settings","labelPlural":"Fiscal Year Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FiscalYearSettings","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FiscalYearSettings/{ID}","describe":"/services/data/v58.0/sobjects/FiscalYearSettings/describe","sobject":"/services/data/v58.0/sobjects/FiscalYearSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06i","label":"Flex + Queue Item","labelPlural":"Flex Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlexQueueItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlexQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/FlexQueueItem/describe","sobject":"/services/data/v58.0/sobjects/FlexQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3dd","label":"Flow + Definition","labelPlural":"Flow Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowDefinitionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowDefinitionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowDefinitionView/describe","sobject":"/services/data/v58.0/sobjects/FlowDefinitionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eC","label":"Flow + Execution Error Event","labelPlural":"Flow Execution Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowExecutionErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fo","label":"Flow + Interview","labelPlural":"Flow Interviews","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowInterview","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowInterview/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowInterview/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterview/describe","layouts":"/services/data/v58.0/sobjects/FlowInterview/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowInterview"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8gZ","label":"Flow + Interview Log","labelPlural":"Flow Interview Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLog/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLog/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f6","label":"Flow + Interview Log Entry","labelPlural":"Flow Interview Log Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogEntry"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterviewLog","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Log Share","labelPlural":"Flow Interview Log Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterview","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Share","labelPlural":"Flow Interview Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jo","label":"Orchestration + Event","labelPlural":"Orchestration Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jE","label":"Orchestration + Run","labelPlural":"Orchestration Runs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Run Share","labelPlural":"Orchestration Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jF","label":"Orchestration + Stage Run","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration + Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration + Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow + Record Relation","labelPlural":"Flow Record Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowRecordRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowRecordRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowRecordRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowRecordRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31y","label":"Flow + Interview Stage Relation","labelPlural":"Flow Interview Stage Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowStageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowStageRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowStageRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowStageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2hU","label":"Flow + Test Result","labelPlural":"Flow Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResult/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResult/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResult"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowTestResult","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Test Result Share","labelPlural":"Flow Test Result Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResultShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResultShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResultShare/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResultShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YB","label":"Flow + Test View","labelPlural":"Flow Test Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestView/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestView/describe","sobject":"/services/data/v58.0/sobjects/FlowTestView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3ad","label":"Flow + Variable","labelPlural":"Flow Variables","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVariableView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVariableView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVariableView/describe","sobject":"/services/data/v58.0/sobjects/FlowVariableView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3vd","label":"Flow + Version","labelPlural":"Flow Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVersionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVersionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVersionView/describe","sobject":"/services/data/v58.0/sobjects/FlowVersionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00l","label":"Folder","labelPlural":"Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Folder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Folder/{ID}","describe":"/services/data/v58.0/sobjects/Folder/describe","sobject":"/services/data/v58.0/sobjects/Folder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Foldered + Content Document","labelPlural":"Foldered Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FolderedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FolderedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/FolderedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/FolderedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kn","label":"Formula + Function","labelPlural":"Formula Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunction/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunction/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fE","label":"Formula + Context Function","labelPlural":"Formula Context Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionAllowedType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kh","label":"Formula + Function Category","labelPlural":"Formula Function Categories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionCategory","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionCategory/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionCategory/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionCategory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06d","label":"Setting + Granted By License","labelPlural":"Settings Granted By Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GrantedByLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GrantedByLicense/{ID}","describe":"/services/data/v58.0/sobjects/GrantedByLicense/describe","sobject":"/services/data/v58.0/sobjects/GrantedByLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00G","label":"Group","labelPlural":"Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Group","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Group/{ID}","describe":"/services/data/v58.0/sobjects/Group/describe","sobject":"/services/data/v58.0/sobjects/Group"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"011","label":"Group + Member","labelPlural":"Group Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GroupMember/{ID}","describe":"/services/data/v58.0/sobjects/GroupMember/describe","sobject":"/services/data/v58.0/sobjects/GroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1gp","label":"Gateway + Provider Payment Method Type","labelPlural":"Gateway Provider Payment Method + Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"GtwyProvPaymentMethodType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/{ID}","describe":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/describe","sobject":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C0","label":"Holiday","labelPlural":"Holidays","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Holiday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Holiday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Holiday/{ID}","describe":"/services/data/v58.0/sobjects/Holiday/describe","layouts":"/services/data/v58.0/sobjects/Holiday/describe/layouts","sobject":"/services/data/v58.0/sobjects/Holiday"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9s4","label":"IP + Address Range","labelPlural":"IP Address Ranges","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"IPAddressRange","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/IPAddressRange/{ID}","describe":"/services/data/v58.0/sobjects/IPAddressRange/describe","layouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/layouts","sobject":"/services/data/v58.0/sobjects/IPAddressRange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09k","label":"Icon + Definition","labelPlural":"Icon Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IconDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IconDefinition/{ID}","describe":"/services/data/v58.0/sobjects/IconDefinition/describe","sobject":"/services/data/v58.0/sobjects/IconDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"087","label":"Idea","labelPlural":"Ideas","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Idea","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Idea/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Idea/{ID}","describe":"/services/data/v58.0/sobjects/Idea/describe","layouts":"/services/data/v58.0/sobjects/Idea/describe/layouts","sobject":"/services/data/v58.0/sobjects/Idea"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Idea","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Idea + Comment","labelPlural":"Idea Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdeaComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdeaComment/{ID}","describe":"/services/data/v58.0/sobjects/IdeaComment/describe","sobject":"/services/data/v58.0/sobjects/IdeaComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0k8","label":"Identity + Provider Event Store","labelPlural":"Identity Provider Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityProviderEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityProviderEventStore/{ID}","describe":"/services/data/v58.0/sobjects/IdentityProviderEventStore/describe","sobject":"/services/data/v58.0/sobjects/IdentityProviderEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jx","label":"Identity + Verification Event","labelPlural":"Identity Verification Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityVerificationEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityVerificationEvent/{ID}","describe":"/services/data/v58.0/sobjects/IdentityVerificationEvent/describe","sobject":"/services/data/v58.0/sobjects/IdentityVerificationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yu","label":"Identity + Provider Event Log","labelPlural":"Identity Event Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdpEventLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdpEventLog/{ID}","describe":"/services/data/v58.0/sobjects/IdpEventLog/describe","sobject":"/services/data/v58.0/sobjects/IdpEventLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6TS","label":"Trusted + Domain for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/IframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/IframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YL","label":"Image","labelPlural":"Images","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Image","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Image/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Image/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Image/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Image/describe","quickActions":"/services/data/v58.0/sobjects/Image/quickActions","layouts":"/services/data/v58.0/sobjects/Image/describe/layouts","sobject":"/services/data/v58.0/sobjects/Image"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Feed","labelPlural":"Image Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ImageFeed/describe","sobject":"/services/data/v58.0/sobjects/ImageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + History","labelPlural":"Image History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ImageHistory/describe","sobject":"/services/data/v58.0/sobjects/ImageHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Image","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Share","labelPlural":"Image Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageShare/{ID}","describe":"/services/data/v58.0/sobjects/ImageShare/describe","sobject":"/services/data/v58.0/sobjects/ImageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PK","label":"Individual","labelPlural":"Individuals","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Individual","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Individual/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Individual/{ID}","describe":"/services/data/v58.0/sobjects/Individual/describe","quickActions":"/services/data/v58.0/sobjects/Individual/quickActions","layouts":"/services/data/v58.0/sobjects/Individual/describe/layouts","sobject":"/services/data/v58.0/sobjects/Individual"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + Change Event","labelPlural":"Individual Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/IndividualChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/IndividualChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/IndividualChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + History","labelPlural":"Individual History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualHistory/{ID}","describe":"/services/data/v58.0/sobjects/IndividualHistory/describe","sobject":"/services/data/v58.0/sobjects/IndividualHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Individual","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T5","label":"Individual + Share","labelPlural":"Individual Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualShare/{ID}","describe":"/services/data/v58.0/sobjects/IndividualShare/describe","sobject":"/services/data/v58.0/sobjects/IndividualShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0El","label":"Installed + Mobile App","labelPlural":"Installed Mobile Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InstalledMobileApp","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InstalledMobileApp/{ID}","describe":"/services/data/v58.0/sobjects/InstalledMobileApp/describe","sobject":"/services/data/v58.0/sobjects/InstalledMobileApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3tt","label":"Invoice","labelPlural":"Invoices","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Invoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Invoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Invoice/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Invoice/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Invoice/describe","quickActions":"/services/data/v58.0/sobjects/Invoice/quickActions","layouts":"/services/data/v58.0/sobjects/Invoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/Invoice"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Feed","labelPlural":"Invoice Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice History","labelPlural":"Invoice History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5TV","label":"Invoice + Line","labelPlural":"Invoice Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"InvoiceLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/InvoiceLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/InvoiceLine/describe","quickActions":"/services/data/v58.0/sobjects/InvoiceLine/quickActions","layouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/InvoiceLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line Feed","labelPlural":"Invoice Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line History","labelPlural":"Invoice Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Invoice","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Share","labelPlural":"Invoice Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceShare/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceShare/describe","sobject":"/services/data/v58.0/sobjects/InvoiceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jp","label":"Job + Profile","labelPlural":"Job Profiles","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"JobProfile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/JobProfile/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/JobProfile/describe","quickActions":"/services/data/v58.0/sobjects/JobProfile/quickActions","layouts":"/services/data/v58.0/sobjects/JobProfile/describe/layouts","sobject":"/services/data/v58.0/sobjects/JobProfile"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Feed","labelPlural":"Job Profile Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileFeed/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileFeed/describe","sobject":"/services/data/v58.0/sobjects/JobProfileFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile History","labelPlural":"Job Profile History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileHistory/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileHistory/describe","sobject":"/services/data/v58.0/sobjects/JobProfileHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"JobProfile","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Share","labelPlural":"Job Profile Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileShare/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileShare/describe","sobject":"/services/data/v58.0/sobjects/JobProfileShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0in","label":"Knowledgeable + User","labelPlural":"Knowledgeable Users","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"KnowledgeableUser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/KnowledgeableUser/{ID}","describe":"/services/data/v58.0/sobjects/KnowledgeableUser/describe","sobject":"/services/data/v58.0/sobjects/KnowledgeableUser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00Q","label":"Lead","labelPlural":"Leads","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Lead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Lead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Lead/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Lead/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Lead/listviews","describe":"/services/data/v58.0/sobjects/Lead/describe","quickActions":"/services/data/v58.0/sobjects/Lead/quickActions","layouts":"/services/data/v58.0/sobjects/Lead/describe/layouts","sobject":"/services/data/v58.0/sobjects/Lead"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Change Event","labelPlural":"Lead Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LeadChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LeadChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LeadChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CL","label":"Lead + Clean Info","labelPlural":"Lead Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/LeadCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/LeadCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Feed","labelPlural":"Lead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadFeed/{ID}","describe":"/services/data/v58.0/sobjects/LeadFeed/describe","sobject":"/services/data/v58.0/sobjects/LeadFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + History","labelPlural":"Lead History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadHistory/{ID}","describe":"/services/data/v58.0/sobjects/LeadHistory/describe","sobject":"/services/data/v58.0/sobjects/LeadHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Lead","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01o","label":"Lead + Share","labelPlural":"Lead Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadShare/{ID}","describe":"/services/data/v58.0/sobjects/LeadShare/describe","sobject":"/services/data/v58.0/sobjects/LeadShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Lead + Status Value","labelPlural":"Lead Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadStatus/{ID}","describe":"/services/data/v58.0/sobjects/LeadStatus/describe","sobject":"/services/data/v58.0/sobjects/LeadStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fw","label":"Legal + Entity","labelPlural":"Legal Entities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LegalEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LegalEntity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LegalEntity/describe","quickActions":"/services/data/v58.0/sobjects/LegalEntity/quickActions","layouts":"/services/data/v58.0/sobjects/LegalEntity/describe/layouts","sobject":"/services/data/v58.0/sobjects/LegalEntity"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityFeed/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityFeed/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity History","labelPlural":"Legal Entity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityHistory/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityHistory/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LegalEntity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity Share","labelPlural":"Legal Entity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityShare/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityShare/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0S1","label":"Lightning + Experience Theme","labelPlural":"Lightning Experience Themes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningExperienceTheme","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningExperienceTheme/{ID}","describe":"/services/data/v58.0/sobjects/LightningExperienceTheme/describe","sobject":"/services/data/v58.0/sobjects/LightningExperienceTheme"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7MM","label":"LightningOnboardingConfig","labelPlural":"LightningOnboardingConfigs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningOnboardingConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningOnboardingConfig/{ID}","describe":"/services/data/v58.0/sobjects/LightningOnboardingConfig/describe","sobject":"/services/data/v58.0/sobjects/LightningOnboardingConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bh","label":"Lightning + URI Event","labelPlural":"Lightning URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEvent/{ID}","describe":"/services/data/v58.0/sobjects/LightningUriEvent/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bi","label":"Lightning + URI Event Stream","labelPlural":"Lightning URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LightningUriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LightningUriEventStream/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XB","label":"List + Email","labelPlural":"List Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ListEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ListEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ListEmail/{ID}","describe":"/services/data/v58.0/sobjects/ListEmail/describe","layouts":"/services/data/v58.0/sobjects/ListEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ListEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ListEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Change Event","labelPlural":"List Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ListEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ListEmailChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XF","label":"List + Email Individual Recipient","labelPlural":"List Email Individual Recipients","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailIndividualRecipient","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/describe","sobject":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XD","label":"List + Email Recipient Source","labelPlural":"List Email Recipient Sources","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailRecipientSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailRecipientSource/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailRecipientSource/describe","sobject":"/services/data/v58.0/sobjects/ListEmailRecipientSource"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ListEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Share","labelPlural":"List Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ListEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00B","label":"List + View","labelPlural":"List Views","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListView/{ID}","describe":"/services/data/v58.0/sobjects/ListView/describe","sobject":"/services/data/v58.0/sobjects/ListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Dd","label":"List + View Chart","labelPlural":"List View Charts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChart","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChart/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChart/describe","sobject":"/services/data/v58.0/sobjects/ListViewChart"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0De","label":"List + View Chart Instance","labelPlural":"List View Chart Instances","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChartInstance","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChartInstance/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChartInstance/describe","sobject":"/services/data/v58.0/sobjects/ListViewChartInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0X8","label":"List + View Event","labelPlural":"List View Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEvent/{ID}","describe":"/services/data/v58.0/sobjects/ListViewEvent/describe","sobject":"/services/data/v58.0/sobjects/ListViewEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XG","label":"List + View Event Stream","labelPlural":"List View Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListViewEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ListViewEventStream/describe","sobject":"/services/data/v58.0/sobjects/ListViewEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"131","label":"Location","labelPlural":"Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Location","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Location/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Location/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Location/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Location/describe","quickActions":"/services/data/v58.0/sobjects/Location/quickActions","layouts":"/services/data/v58.0/sobjects/Location/describe/layouts","sobject":"/services/data/v58.0/sobjects/Location"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Change Event","labelPlural":"Location Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Feed","labelPlural":"Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gh","label":"Location + Group","labelPlural":"Location Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroup/describe","quickActions":"/services/data/v58.0/sobjects/LocationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/LocationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gx","label":"Location + Group Assignment","labelPlural":"Location Group Assignments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroupAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroupAssignment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe","layouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroupAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Feed","labelPlural":"Location Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group History","labelPlural":"Location Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LocationGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Share","labelPlural":"Location Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupShare/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + History","labelPlural":"Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Location","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Share","labelPlural":"Location Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationShare/describe","sobject":"/services/data/v58.0/sobjects/LocationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VX","label":"LoginAs + Event","labelPlural":"LoginAs Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginAsEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VY","label":"LoginAs + Event Stream","labelPlural":"LoginAs Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginAsEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginAsEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1HB","label":"Login + Event","labelPlural":"Login Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ll","label":"Login + Event Stream","labelPlural":"Login Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04F","label":"Login + Geo Data","labelPlural":"Login Geo Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginGeo","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginGeo/{ID}","describe":"/services/data/v58.0/sobjects/LoginGeo/describe","sobject":"/services/data/v58.0/sobjects/LoginGeo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ya","label":"Login + History","labelPlural":"Login History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginHistory/{ID}","describe":"/services/data/v58.0/sobjects/LoginHistory/describe","sobject":"/services/data/v58.0/sobjects/LoginHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"710","label":"Login + IP","labelPlural":"Login IP","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginIp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginIp/{ID}","describe":"/services/data/v58.0/sobjects/LoginIp/describe","sobject":"/services/data/v58.0/sobjects/LoginIp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06M","label":"Logout + Event","labelPlural":"Logout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEvent/{ID}","describe":"/services/data/v58.0/sobjects/LogoutEvent/describe","sobject":"/services/data/v58.0/sobjects/LogoutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PH","label":"Logout + Event Stream","labelPlural":"Logout Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LogoutEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LogoutEventStream/describe","sobject":"/services/data/v58.0/sobjects/LogoutEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lookups + from Activity","labelPlural":"Lookups from Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LookedUpFromActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LookedUpFromActivity/{ID}","describe":"/services/data/v58.0/sobjects/LookedUpFromActivity/describe","sobject":"/services/data/v58.0/sobjects/LookedUpFromActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"873","label":"ML + Model","labelPlural":"ML Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModel/describe","sobject":"/services/data/v58.0/sobjects/MLModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"876","label":"ML + Model Factor","labelPlural":"ML Model Factors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactor/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"877","label":"ML + Model Factor Component","labelPlural":"ML Model Factor Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactorComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactorComponent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactorComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"874","label":"ML + Model Metric","labelPlural":"ML Model Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelMetric/{ID}","describe":"/services/data/v58.0/sobjects/MLModelMetric/describe","sobject":"/services/data/v58.0/sobjects/MLModelMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6gt","label":"ML + Prediction Definition","labelPlural":"ML Prediction Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLPredictionDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLPredictionDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLPredictionDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLPredictionDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7gh","label":"ML + Recommendation Definition","labelPlural":"ML Recommendation Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLRecommendationDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLRecommendationDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLRecommendationDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLRecommendationDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JZ","label":"Macro","labelPlural":"Macros","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Macro","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Macro/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Macro/{ID}","describe":"/services/data/v58.0/sobjects/Macro/describe","layouts":"/services/data/v58.0/sobjects/Macro/describe/layouts","sobject":"/services/data/v58.0/sobjects/Macro"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Change Event","labelPlural":"Macro Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + History","labelPlural":"Macro History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroHistory/{ID}","describe":"/services/data/v58.0/sobjects/MacroHistory/describe","sobject":"/services/data/v58.0/sobjects/MacroHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ji","label":"Macro + Instruction","labelPlural":"Macro Instructions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstruction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstruction/{ID}","describe":"/services/data/v58.0/sobjects/MacroInstruction/describe","sobject":"/services/data/v58.0/sobjects/MacroInstruction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MacroInstruction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Instruction Change Event","labelPlural":"Macro Instruction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstructionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Macro","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Share","labelPlural":"Macro Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroShare/describe","sobject":"/services/data/v58.0/sobjects/MacroShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5ML","label":"Macro + Usage","labelPlural":"Macro Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MacroUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MacroUsage/describe","sobject":"/services/data/v58.0/sobjects/MacroUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MacroUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Usage Share","labelPlural":"Macro Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroUsageShare/describe","sobject":"/services/data/v58.0/sobjects/MacroUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01H","label":"Mail + Merge Template","labelPlural":"Mail Merge Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MailmergeTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MailmergeTemplate/{ID}","describe":"/services/data/v58.0/sobjects/MailmergeTemplate/describe","sobject":"/services/data/v58.0/sobjects/MailmergeTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MA","label":"Maintenance + Asset","labelPlural":"Maintenance Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceAsset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAsset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceAsset/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceAsset/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceAsset"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Change Event","labelPlural":"Maintenance Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Feed","labelPlural":"Maintenance Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset History","labelPlural":"Maintenance Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MP","label":"Maintenance + Plan","labelPlural":"Maintenance Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenancePlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenancePlan/describe","quickActions":"/services/data/v58.0/sobjects/MaintenancePlan/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenancePlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Change Event","labelPlural":"Maintenance Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Feed","labelPlural":"Maintenance Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan History","labelPlural":"Maintenance Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenancePlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Share","labelPlural":"Maintenance Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7fc","label":"Maintenance + Work Rule","labelPlural":"Maintenance Work Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceWorkRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceWorkRule/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Change Event","labelPlural":"Maintenance Work Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Feed","labelPlural":"Maintenance Work Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule History","labelPlural":"Maintenance Work Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenanceWorkRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Share","labelPlural":"Maintenance Work Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"20Y","label":"Managed + Content","labelPlural":"Managed Contents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContent/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContent/describe","layouts":"/services/data/v58.0/sobjects/ManagedContent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ap","label":"Managed + Content Channel","labelPlural":"Managed Content Channels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentChannel/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentChannel/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zu","label":"Managed + Content Space","labelPlural":"Managed Content Spaces","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ManagedContentSpace","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentSpace/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentSpace/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentSpace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Ps","label":"Managed + Content Variant","labelPlural":"Managed Content Variants","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariant","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariant/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentVariant/describe","layouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContentVariant"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ManagedContentVariant","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Managed + Content Variant Change Event","labelPlural":"Managed Content Variant Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching + Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching + Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My + Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named + Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note + and Attachment","labelPlural":"Notes and Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"NoteAndAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NoteAndAttachment/{ID}","describe":"/services/data/v58.0/sobjects/NoteAndAttachment/describe","sobject":"/services/data/v58.0/sobjects/NoteAndAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ud","label":"OAuth + Custom Scope","labelPlural":"OAuth Custom Scopes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScope","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScope/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScope/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScope"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ue","label":"OAuth + Custom Scope App ","labelPlural":"OAuth Custom Scope Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScopeApp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScopeApp/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScopeApp/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScopeApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CQ","label":"Oauth + Token","labelPlural":"Oauth Tokens","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthToken","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthToken/{ID}","describe":"/services/data/v58.0/sobjects/OauthToken/describe","sobject":"/services/data/v58.0/sobjects/OauthToken"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"110","label":"Object + Permissions","labelPlural":"Object Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ObjectPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ObjectPermissions/{ID}","describe":"/services/data/v58.0/sobjects/ObjectPermissions/describe","sobject":"/services/data/v58.0/sobjects/ObjectPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UG","label":"Onboarding + Metrics","labelPlural":"Onboarding Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OnboardingMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OnboardingMetrics/{ID}","describe":"/services/data/v58.0/sobjects/OnboardingMetrics/describe","sobject":"/services/data/v58.0/sobjects/OnboardingMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Open + Activity","labelPlural":"Open Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpenActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpenActivity/{ID}","describe":"/services/data/v58.0/sobjects/OpenActivity/describe","sobject":"/services/data/v58.0/sobjects/OpenActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OH","label":"Operating + Hours","labelPlural":"Operating Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHours/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHours/describe","quickActions":"/services/data/v58.0/sobjects/OperatingHours/quickActions","layouts":"/services/data/v58.0/sobjects/OperatingHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHours"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Change Event","labelPlural":"Operating Hours Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Feed","labelPlural":"Operating Hours Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jG","label":"Operating + Hours Holiday","labelPlural":"Operating Hours Holidays","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHoursHoliday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHoliday/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe","layouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHoursHoliday"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHoursHoliday","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Holiday Feed","labelPlural":"Operating Hours Holiday Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursHolidayFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"006","label":"Opportunity","labelPlural":"Opportunities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Opportunity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Opportunity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Opportunity/listviews","describe":"/services/data/v58.0/sobjects/Opportunity/describe","quickActions":"/services/data/v58.0/sobjects/Opportunity/quickActions","layouts":"/services/data/v58.0/sobjects/Opportunity/describe/layouts","sobject":"/services/data/v58.0/sobjects/Opportunity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Change Event","labelPlural":"Opportunity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00J","label":"Opportunity: + Competitor","labelPlural":"Opportunity: Competitor","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityCompetitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityCompetitor/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityCompetitor/describe","sobject":"/services/data/v58.0/sobjects/OpportunityCompetitor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00K","label":"Opportunity + Contact Role","labelPlural":"Opportunity Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRole/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityContactRole/describe","quickActions":"/services/data/v58.0/sobjects/OpportunityContactRole/quickActions","layouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OpportunityContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Contact Role Change Event","labelPlural":"Opportunity Contact Role Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Feed","labelPlural":"Opportunity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFeed/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFeed/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Field History","labelPlural":"Opportunity Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFieldHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"008","label":"Opportunity + History","labelPlural":"Opportunity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00k","label":"Opportunity + Product","labelPlural":"Opportunity Product","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OpportunityLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityLineItem/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityLineItem/describe","layouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityLineItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Opportunity + Partner","labelPlural":"Opportunity Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityPartner/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityPartner/describe","layouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Opportunity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00t","label":"Opportunity + Share","labelPlural":"Opportunity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityShare/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityShare/describe","sobject":"/services/data/v58.0/sobjects/OpportunityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Opportunity + Stage","labelPlural":"Opportunity Stage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityStage","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityStage/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityStage/describe","sobject":"/services/data/v58.0/sobjects/OpportunityStage"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"801","label":"Order","labelPlural":"Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Order","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order/describe","quickActions":"/services/data/v58.0/sobjects/Order/quickActions","layouts":"/services/data/v58.0/sobjects/Order/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Change Event","labelPlural":"Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Feed","labelPlural":"Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + History","labelPlural":"Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"802","label":"Order + Product","labelPlural":"Order Products","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OrderItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OrderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OrderItem/{ID}","describe":"/services/data/v58.0/sobjects/OrderItem/describe","layouts":"/services/data/v58.0/sobjects/OrderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OrderItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Change Event","labelPlural":"Order Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Feed","labelPlural":"Order Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product History","labelPlural":"Order Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fy","label":"Order + Share","labelPlural":"Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderShare/{ID}","describe":"/services/data/v58.0/sobjects/OrderShare/describe","sobject":"/services/data/v58.0/sobjects/OrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Status Value","labelPlural":"Order Status Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/OrderStatus/describe","sobject":"/services/data/v58.0/sobjects/OrderStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Stripe Coupon","labelPlural":"Change Event: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Stripe Coupon","labelPlural":"Share: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1N","label":"Order + Stripe Coupon","labelPlural":"Order Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D3","label":"Organization + Email Address Security","labelPlural":"Organization Email Address Security","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgEmailAddressSecurity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/{ID}","describe":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/describe","sobject":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OL","label":"Org + Lifecycle Notification","labelPlural":"Org Lifecycle Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgLifecycleNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgLifecycleNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrgLifecycleNotification/eventSchema","describe":"/services/data/v58.0/sobjects/OrgLifecycleNotification/describe","sobject":"/services/data/v58.0/sobjects/OrgLifecycleNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3v1","label":"Org + Metric","labelPlural":"Org Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetric/{ID}","describe":"/services/data/v58.0/sobjects/OrgMetric/describe","sobject":"/services/data/v58.0/sobjects/OrgMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9aM","label":"Org + Metric Scan Result","labelPlural":"Org Metric Scan Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanResult/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6mX","label":"Org + Metric Scan Summary","labelPlural":"Org Metric Scan Summaries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanSummary","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanSummary/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanSummary"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D2","label":"Organization-wide + From Email Address","labelPlural":"Organization-wide From Email Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgWideEmailAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgWideEmailAddress/{ID}","describe":"/services/data/v58.0/sobjects/OrgWideEmailAddress/describe","sobject":"/services/data/v58.0/sobjects/OrgWideEmailAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00D","label":"Organization","labelPlural":"Organizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization/{ID}","describe":"/services/data/v58.0/sobjects/Organization/describe","sobject":"/services/data/v58.0/sobjects/Organization"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Organization_Type__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Organization Type","labelPlural":"Change Event: Organization Type","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1O","label":"Organization + Type","labelPlural":"Organization Type","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__c/{ID}","describe":"/services/data/v58.0/sobjects/Organization_Type__c/describe","quickActions":"/services/data/v58.0/sobjects/Organization_Type__c/quickActions","layouts":"/services/data/v58.0/sobjects/Organization_Type__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Organization_Type__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q1","label":"Outgoing + Email","labelPlural":"Outgoing Emails","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmail/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmail/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q3","label":"Outgoing + Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change + Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party + Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Feed","labelPlural":"Party Consent Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent History","labelPlural":"Party Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PartyConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Share","labelPlural":"Party Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentShare/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0aQ","label":"Payment","labelPlural":"Payments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Payment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Payment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Payment/{ID}","describe":"/services/data/v58.0/sobjects/Payment/describe","quickActions":"/services/data/v58.0/sobjects/Payment/quickActions","layouts":"/services/data/v58.0/sobjects/Payment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Payment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9tv","label":"Payment + Authorization Adjustment","labelPlural":"Payment Authorization Adjustments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthAdjustment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthAdjustment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xc","label":"Payment + Authorization","labelPlural":"Payment Authorizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthorization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthorization/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthorization/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthorization/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthorization"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Payment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PaymentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PaymentFeed/describe","sobject":"/services/data/v58.0/sobjects/PaymentFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0b0","label":"Payment + Gateway","labelPlural":"Payment Gateways","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGateway","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGateway/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGateway/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGateway/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGateway"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xt","label":"Payment + Gateway Log","labelPlural":"Payment Gateway Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayLog/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGatewayLog/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cJ","label":"Payment + Gateway Provider","labelPlural":"Payment Gateway Providers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayProvider/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe","layouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9zx","label":"Payment + Group","labelPlural":"Payment Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGroup/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGroup/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGroup/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1PL","label":"Payment + Line Invoice","labelPlural":"Payment Line Invoices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentLineInvoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentLineInvoice/{ID}","describe":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe","quickActions":"/services/data/v58.0/sobjects/PaymentLineInvoice/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentLineInvoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":true,"isSubtype":false,"keyPrefix":"0aa","label":"Payment + Method","labelPlural":"Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentMethod","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/PaymentMethod/describe","layouts":"/services/data/v58.0/sobjects/PaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"026","label":"Period","labelPlural":"Period","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Period","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Period/{ID}","describe":"/services/data/v58.0/sobjects/Period/describe","sobject":"/services/data/v58.0/sobjects/Period"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PS","label":"Permission + Set","labelPlural":"Permission Sets","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSet/describe","sobject":"/services/data/v58.0/sobjects/PermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pa","label":"Permission + Set Assignment","labelPlural":"Permission Set Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetAssignment/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetAssignment/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f3","label":"Permission + Set Event","labelPlural":"Permission Set Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PermissionSetEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PermissionSetEvent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f9","label":"Permission + Set Event Store ","labelPlural":"Permission Set Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEventStore/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetEventStore/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PG","label":"Permission + Set Group","labelPlural":"Permission Set Groups","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSetGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroup/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroup/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PM","label":"Permission + Set Group Component","labelPlural":"Permission Set Group Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetGroupComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroupComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PL","label":"Permission + Set License","labelPlural":"Permission Set Licenses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicense/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicense/describe","layouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/layouts","sobject":"/services/data/v58.0/sobjects/PermissionSetLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2LA","label":"Permission + Set License Assignment","labelPlural":"Permission Set License Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicenseAssign","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01P","label":"Permission + Set Tab Setting","labelPlural":"Permission Set Tab Setting","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetTabSetting","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetTabSetting/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetTabSetting/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetTabSetting"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pv","label":"Picklist + Value Info","labelPlural":"Picklist Value Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PicklistValueInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PicklistValueInfo/{ID}","describe":"/services/data/v58.0/sobjects/PicklistValueInfo/describe","sobject":"/services/data/v58.0/sobjects/PicklistValueInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JV","label":"Platform + Action","labelPlural":"Platform Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformAction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformAction/{ID}","describe":"/services/data/v58.0/sobjects/PlatformAction/describe","sobject":"/services/data/v58.0/sobjects/PlatformAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Er","label":"Platform + Cache Partition","labelPlural":"Platform Cache Partitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartition/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartition/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ev","label":"Platform + Cache Partition Type","labelPlural":"Platform Cache Partition Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartitionType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartitionType/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartitionType/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartitionType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Kk","label":"Platform + Event Usage Metric","labelPlural":"Platform Event Usage Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformEventUsageMetric","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/{ID}","describe":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/describe","sobject":"/services/data/v58.0/sobjects/PlatformEventUsageMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0V2","label":"Platform + Status Alert Event","labelPlural":"Platform Status Alert Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformStatusAlertEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/describe","sobject":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01s","label":"Price + Book","labelPlural":"Price Books","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Pricebook2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Pricebook2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Pricebook2/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2/describe","layouts":"/services/data/v58.0/sobjects/Pricebook2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Pricebook2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Change Event","labelPlural":"Price Book Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book History","labelPlural":"Price Book History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2History/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2History/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01u","label":"Price + Book Entry","labelPlural":"Price Book Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PricebookEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PricebookEntry/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntry/describe","layouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/PricebookEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry Change Event","labelPlural":"Price Book Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry History","labelPlural":"Price Book Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04a","label":"Process + Definition","labelPlural":"Process Definition","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ProcessDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ProcessDefinition/describe","sobject":"/services/data/v58.0/sobjects/ProcessDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Pe","label":"Process + Exception","labelPlural":"Process Exceptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProcessException","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProcessException/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProcessException/describe","quickActions":"/services/data/v58.0/sobjects/ProcessException/quickActions","layouts":"/services/data/v58.0/sobjects/ProcessException/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProcessException"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4v2","label":"Process + Exception Event","labelPlural":"Process Exception Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProcessExceptionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProcessExceptionEvent/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProcessException","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Exception Share","labelPlural":"Process Exception Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionShare/{ID}","describe":"/services/data/v58.0/sobjects/ProcessExceptionShare/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"11Q","label":"Process + Flow Migration","labelPlural":"Process Flow Migration Objects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessFlowMigration","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessFlowMigration/{ID}","describe":"/services/data/v58.0/sobjects/ProcessFlowMigration/describe","sobject":"/services/data/v58.0/sobjects/ProcessFlowMigration"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04g","label":"Process + Instance","labelPlural":"Process Instance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstance","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstance/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstance/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Instance History","labelPlural":"Process Instance History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceHistory/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OO","label":"Process + Instance Node","labelPlural":"Process Instance Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04h","label":"Process + Instance Step","labelPlural":"Process Instance Step","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceStep","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceStep/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceStep/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04i","label":"Approval + Request","labelPlural":"Approval Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceWorkitem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04b","label":"Process + Node","labelPlural":"Process Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessNode","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01t","label":"Product","labelPlural":"Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Product2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Product2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Product2/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Product2/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Product2/describe","quickActions":"/services/data/v58.0/sobjects/Product2/quickActions","layouts":"/services/data/v58.0/sobjects/Product2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Product2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Change Event","labelPlural":"Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Product2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Product2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Product2ChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Feed","labelPlural":"Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2Feed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2Feed/{ID}","describe":"/services/data/v58.0/sobjects/Product2Feed/describe","sobject":"/services/data/v58.0/sobjects/Product2Feed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + History","labelPlural":"Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2History/{ID}","describe":"/services/data/v58.0/sobjects/Product2History/describe","sobject":"/services/data/v58.0/sobjects/Product2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gv","label":"Product + Consumed","labelPlural":"Products Consumed","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductConsumed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumed/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumed/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumed/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumed"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Change Event","labelPlural":"Product Consumed Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Feed","labelPlural":"Product Consumed Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed History","labelPlural":"Product Consumed History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pY","label":"Product + Consumed State","labelPlural":"Product Consumed States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumedState/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumedState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumedState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumedState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed State History","labelPlural":"Product Consumed State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mq","label":"Product + Consumption Schedule","labelPlural":"Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe","layouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumptionSchedule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E9","label":"Product + Entitlement Template","labelPlural":"Product Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductEntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/ProductEntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Co","label":"Product + Item","labelPlural":"Product Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Change Event","labelPlural":"Product Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Feed","labelPlural":"Product Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item History","labelPlural":"Product Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Share","labelPlural":"Product Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemShare/describe","sobject":"/services/data/v58.0/sobjects/ProductItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TR","label":"Product + Item Transaction","labelPlural":"Product Item Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItemTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItemTransaction/describe","quickActions":"/services/data/v58.0/sobjects/ProductItemTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItemTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction Feed","labelPlural":"Product Item Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction History","labelPlural":"Product Item Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TS","label":"Product + Request","labelPlural":"Product Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequest/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequest/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequest"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Change Event","labelPlural":"Product Request Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Feed","labelPlural":"Product Request Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request History ","labelPlural":"Product Request History ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tw","label":"Product + Request Line Item","labelPlural":"Product Request Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequestLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequestLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Change Event","labelPlural":"Product Request Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Feed","labelPlural":"Product Request Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item History ","labelPlural":"Product Request Line Item History + ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Share","labelPlural":"Product Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gn","label":"Product + Required","labelPlural":"Products Required","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequired","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequired/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequired/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequired/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequired/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequired"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Change Event","labelPlural":"Product Required Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Feed","labelPlural":"Product Required Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required History","labelPlural":"Product Required History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iR","label":"Product + Service Campaign","labelPlural":"Product Service Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaign/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaign"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Feed","labelPlural":"Product Service Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign History","labelPlural":"Product Service Campaign History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"23N","label":"Product + Service Campaign Item","labelPlural":"Product Service Campaign Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaignItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Feed","labelPlural":"Product Service Campaign Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item History","labelPlural":"Product Service Campaign Item + History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Status","labelPlural":"Product Service Campaign Item + Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductServiceCampaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Share","labelPlural":"Product Service Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Status","labelPlural":"Product Service Campaign Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lu","label":"Product + Transfer","labelPlural":"Product Transfers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductTransfer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransfer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransfer/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransfer/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransfer"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Change Event","labelPlural":"Product Transfer Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Feed","labelPlural":"Product Transfer Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer History","labelPlural":"Product Transfer History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductTransfer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Share","labelPlural":"Product Transfer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferShare/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0nw","label":"Product + Transfer State","labelPlural":"Product Transfer States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductTransferState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransferState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransferState/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransferState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransferState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransferState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer State History","labelPlural":"Product Transfer State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Uj","label":"Product + Warranty Term","labelPlural":"Product Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductWarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTerm/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/ProductWarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTerm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term Feed","labelPlural":"Product Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term History","labelPlural":"Product Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00e","label":"Profile","labelPlural":"Profile","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Profile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Profile/{ID}","describe":"/services/data/v58.0/sobjects/Profile/describe","sobject":"/services/data/v58.0/sobjects/Profile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sk","label":"Skill","labelPlural":"Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProfileSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkill/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkill/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkill"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SE","label":"Endorsement","labelPlural":"Endorsements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsement"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + Feed","labelPlural":"Endorsement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + History","labelPlural":"Endorsement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Feed","labelPlural":"Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + History","labelPlural":"Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProfileSkill","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Share","labelPlural":"Skill Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillShare/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillShare/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SM","label":"Skill + User","labelPlural":"Skill Users","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillUser/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillUser/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillUser"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User Feed","labelPlural":"Skill User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User History","labelPlural":"Skill User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bs","label":"Prompt","labelPlural":"Prompts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Prompt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Prompt/{ID}","describe":"/services/data/v58.0/sobjects/Prompt/describe","sobject":"/services/data/v58.0/sobjects/Prompt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bu","label":"Prompt + Action","labelPlural":"Prompt Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptAction/describe","sobject":"/services/data/v58.0/sobjects/PromptAction"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptAction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Action Share","labelPlural":"Prompt Action Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptActionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptActionShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptActionShare/describe","sobject":"/services/data/v58.0/sobjects/PromptActionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4Dr","label":"Prompt + Error","labelPlural":"Prompt Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptError","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptError/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptError/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptError/describe","sobject":"/services/data/v58.0/sobjects/PromptError"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptError","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Error Share","labelPlural":"Prompt Error Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptErrorShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptErrorShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptErrorShare/describe","sobject":"/services/data/v58.0/sobjects/PromptErrorShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bt","label":"Prompt + Version","labelPlural":"Prompt Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptVersion/{ID}","describe":"/services/data/v58.0/sobjects/PromptVersion/describe","sobject":"/services/data/v58.0/sobjects/PromptVersion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pb","label":"Publisher","labelPlural":"Publishers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Publisher","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Publisher/{ID}","describe":"/services/data/v58.0/sobjects/Publisher/describe","sobject":"/services/data/v58.0/sobjects/Publisher"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IF","label":"Push + Topic","labelPlural":"Push Topics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PushTopic","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PushTopic/{ID}","describe":"/services/data/v58.0/sobjects/PushTopic/describe","sobject":"/services/data/v58.0/sobjects/PushTopic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03g","label":"Queue + sObject","labelPlural":"Queue sObjects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QueueSobject","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QueueSobject/{ID}","describe":"/services/data/v58.0/sobjects/QueueSobject/describe","sobject":"/services/data/v58.0/sobjects/QueueSobject"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"574","label":"Quick + Text","labelPlural":"Quick Text","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"QuickText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/QuickText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/QuickText/{ID}","describe":"/services/data/v58.0/sobjects/QuickText/describe","layouts":"/services/data/v58.0/sobjects/QuickText/describe/layouts","sobject":"/services/data/v58.0/sobjects/QuickText"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Change Event","labelPlural":"Quick Text Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/QuickTextChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/QuickTextChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/QuickTextChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text History","labelPlural":"Quick Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextHistory/describe","sobject":"/services/data/v58.0/sobjects/QuickTextHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickText","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Share","labelPlural":"Quick Text Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5QL","label":"Quick + Text Usage","labelPlural":"Quick Text Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/QuickTextUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/QuickTextUsage/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickTextUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Usage Share","labelPlural":"Quick Text Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextUsageShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QR","label":"Quote + Template Rich Text Data","labelPlural":"Quote Template Rich Text Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuoteTemplateRichTextData","queryable":false,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/{ID}","describe":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/describe","sobject":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Line_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Stripe Coupon Association","labelPlural":"Change Event: + Quote Line Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1P","label":"Quote + Line Stripe Coupon Association","labelPlural":"Quote Line Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon Association","labelPlural":"Change Event: Quote + Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1Q","label":"Quote + Stripe Coupon Association","labelPlural":"Quote Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon","labelPlural":"Change Event: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Quote_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Stripe Coupon","labelPlural":"Share: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1R","label":"Quote + Stripe Coupon","labelPlural":"Quote Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recently + Viewed","labelPlural":"Recently Viewed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecentlyViewed","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecentlyViewed/{ID}","describe":"/services/data/v58.0/sobjects/RecentlyViewed/describe","sobject":"/services/data/v58.0/sobjects/RecentlyViewed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pr","label":"Recommendation","labelPlural":"Recommendations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Recommendation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Recommendation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Recommendation/{ID}","describe":"/services/data/v58.0/sobjects/Recommendation/describe","layouts":"/services/data/v58.0/sobjects/Recommendation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Recommendation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Recommendation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recommendation + Change Event","labelPlural":"Recommendation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecommendationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecommendationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecommendationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rr","label":"Recommendation + Response","labelPlural":"Recommendation Responses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationResponse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationResponse/{ID}","describe":"/services/data/v58.0/sobjects/RecommendationResponse/describe","sobject":"/services/data/v58.0/sobjects/RecommendationResponse"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rw","label":"RecordAction","labelPlural":"RecordActions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordAction/{ID}","describe":"/services/data/v58.0/sobjects/RecordAction/describe","sobject":"/services/data/v58.0/sobjects/RecordAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ub","label":"RecordActionHistory","labelPlural":"RecordActionHistories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordActionHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordActionHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordActionHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordActionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"012","label":"Record + Type","labelPlural":"Record Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"RecordType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordType/{ID}","describe":"/services/data/v58.0/sobjects/RecordType/describe","sobject":"/services/data/v58.0/sobjects/RecordType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hr","label":"Recordset + Filter Criteria","labelPlural":"Recordset Filter Criteria","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteria"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Change Event","labelPlural":"Recordset Filter Criteria Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria History","labelPlural":"Recordset Filter Criteria History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hK","label":"Recordset + Filter Criteria Rule","labelPlural":"Recordset Filter Criteria Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteriaRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteriaRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Rule Change Event","labelPlural":"Recordset Filter Criteria + Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"RecordsetFilterCriteria","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Share","labelPlural":"Recordset Filter Criteria Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0yH","label":"Recordset + Filter Criteria Monitor","labelPlural":"Recordset Filter Criteria Monitors","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFltrCritMonitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Change Event","labelPlural":"Recordset Filter Criteria + Monitor Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Feed","labelPlural":"Recordset Filter Criteria Monitor + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor History","labelPlural":"Recordset Filter Criteria + Monitor History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9V6","label":"Allow + URL for Redirects","labelPlural":"Allow URLs for Redirects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RedirectWhitelistUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/{ID}","describe":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/describe","sobject":"/services/data/v58.0/sobjects/RedirectWhitelistUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cb","label":"Refund","labelPlural":"Refunds","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Refund","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Refund/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Refund/{ID}","describe":"/services/data/v58.0/sobjects/Refund/describe","quickActions":"/services/data/v58.0/sobjects/Refund/quickActions","layouts":"/services/data/v58.0/sobjects/Refund/describe/layouts","sobject":"/services/data/v58.0/sobjects/Refund"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dR","label":"Refund + Line Payment","labelPlural":"Refund Line Payments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"RefundLinePayment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RefundLinePayment/{ID}","describe":"/services/data/v58.0/sobjects/RefundLinePayment/describe","quickActions":"/services/data/v58.0/sobjects/RefundLinePayment/quickActions","layouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/layouts","sobject":"/services/data/v58.0/sobjects/RefundLinePayment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rc","label":"Related + List Column Definition","labelPlural":"Related List Column Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListColumnDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListColumnDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rl","label":"Related + List Definition","labelPlural":"Related List Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jv","label":"Relationship + Domain","labelPlural":"Relationship Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipDomain","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipDomain/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipDomain/describe","sobject":"/services/data/v58.0/sobjects/RelationshipDomain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ju","label":"Relationship","labelPlural":"Relationships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipInfo/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipInfo/describe","sobject":"/services/data/v58.0/sobjects/RelationshipInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VA","label":"Remote + Key Callout Event","labelPlural":"Remote Key Callout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RemoteKeyCalloutEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/describe","sobject":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00O","label":"Report","labelPlural":"Reports","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Report","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Report/{ID}","listviews":"/services/data/v58.0/sobjects/Report/listviews","describe":"/services/data/v58.0/sobjects/Report/describe","sobject":"/services/data/v58.0/sobjects/Report"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yv","label":"Report + Anomaly Event","labelPlural":"Report Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReportAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Z7","label":"Report + Anomaly Event Store","labelPlural":"Report Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReportAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReportAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Anomaly Event Store Feed","labelPlural":"Report Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qu","label":"Report + Event","labelPlural":"Report Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEvent/{ID}","describe":"/services/data/v58.0/sobjects/ReportEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ol","label":"Report + Event Stream","labelPlural":"Report Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ReportEventStream/describe","sobject":"/services/data/v58.0/sobjects/ReportEventStream"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Report","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Feed","labelPlural":"Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hw","label":"Resource + Absence","labelPlural":"Resource Absences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourceAbsence","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsence/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourceAbsence/describe","quickActions":"/services/data/v58.0/sobjects/ResourceAbsence/quickActions","layouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourceAbsence"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Change Event","labelPlural":"Resource Absence Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Feed","labelPlural":"Resource Absence Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence History","labelPlural":"Resource Absence History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kz","label":"Resource + Preference","labelPlural":"Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourcePreference/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourcePreference/describe","layouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourcePreference"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Change Event","labelPlural":"Resource Preference Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Feed","labelPlural":"Resource Preference Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference History","labelPlural":"Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2oN","label":"Return + Order","labelPlural":"Return Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrder/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrder/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Change Event","labelPlural":"Return Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Feed","labelPlural":"Return Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order History","labelPlural":"Return Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sn","label":"Return + Order Line Item","labelPlural":"Return Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Change Event","labelPlural":"Return Order Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Feed","labelPlural":"Return Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item History","labelPlural":"Return Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ReturnOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Share","labelPlural":"Return Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderShare/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Set","labelPlural":"Change Event: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__AttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Attribute Set","labelPlural":"Share: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a00","label":"Attribute + Set","labelPlural":"Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__AttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Value","labelPlural":"Change Event: Attribute Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a01","label":"Attribute + Value","labelPlural":"Attribute Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__BlockPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Block Price","labelPlural":"Change Event: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__BlockPrice__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Block Price","labelPlural":"Share: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a02","label":"Block + Price","labelPlural":"Block Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ColumnMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Column Metadata","labelPlural":"Change Event: Column Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ColumnMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a04","label":"Column + Metadata","labelPlural":"Columns Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ColumnMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Attribute","labelPlural":"Change Event: Configuration + Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Configuration Attribute","labelPlural":"Share: Configuration Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a05","label":"Configuration + Attribute","labelPlural":"Configuration Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ConfigurationAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Rule","labelPlural":"Change Event: Configuration Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a06","label":"Configuration + Rule","labelPlural":"Configuration Rules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Contracted Price","labelPlural":"Change Event: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Contracted Price","labelPlural":"History: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a07","label":"Contracted + Price","labelPlural":"Contracted Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Cost__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Cost","labelPlural":"Change Event: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Cost__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Cost","labelPlural":"Share: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a08","label":"Cost","labelPlural":"Costs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Cost__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomActionCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action Condition","labelPlural":"Change Event: Custom Action + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a09","label":"Custom + Action Condition","labelPlural":"Custom Action Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action","labelPlural":"Change Event: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomAction__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Action","labelPlural":"Share: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0A","label":"Custom + Action","labelPlural":"Custom Actions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomScript__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Script","labelPlural":"Change Event: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomScript__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Script","labelPlural":"Share: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0C","label":"Custom + Script","labelPlural":"Custom Scripts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomScript__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Dimension__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Dimension","labelPlural":"Change Event: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Dimension__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Dimension","labelPlural":"Share: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0D","label":"Price + Dimension","labelPlural":"Price Dimensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountCategory__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Category","labelPlural":"Change Event: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountCategory__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Category","labelPlural":"Share: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0E","label":"Discount + Category","labelPlural":"Discount Categories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountCategory__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Schedule","labelPlural":"Change Event: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Schedule","labelPlural":"History: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Schedule","labelPlural":"Share: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0G","label":"Discount + Schedule","labelPlural":"Discount Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Tier","labelPlural":"Change Event: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Tier","labelPlural":"History: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0H","label":"Discount + Tier","labelPlural":"Discount Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ErrorCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Condition","labelPlural":"Change Event: Error Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0I","label":"Error + Condition","labelPlural":"Error Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteProduct__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Product","labelPlural":"Change Event: Favorite Product","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0J","label":"Favorite + Product","labelPlural":"Favorite Product","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteShare__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Share","labelPlural":"Change Event: Favorite Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0K","label":"Favorite + Share","labelPlural":"Favorite Shares","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Favorite__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite","labelPlural":"Change Event: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Favorite__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Favorite","labelPlural":"Share: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0L","label":"Favorite","labelPlural":"Favorites","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Favorite__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Field Metadata","labelPlural":"Change Event: Field Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0M","label":"Field + Metadata","labelPlural":"Field Metadata","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: FieldSet Metadata","labelPlural":"Change Event: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + FieldSet Metadata","labelPlural":"Share: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0N","label":"FieldSet + Metadata","labelPlural":"FieldSets Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__FieldSetMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Column","labelPlural":"Change Event: Import Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Q","label":"Import + Column","labelPlural":"Import Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportFormat__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Format","labelPlural":"Change Event: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ImportFormat__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Import Format","labelPlural":"Share: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0R","label":"Import + Format","labelPlural":"Import Formats","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ImportFormat__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Install Processor Log","labelPlural":"Change Event: Install Processor + Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Install Processor Log","labelPlural":"Share: Install Processor Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0S","label":"Install + Processor Log","labelPlural":"Install Processor Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__InstallProcessorLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LineColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Line Column","labelPlural":"Change Event: Line Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0T","label":"Line + Column","labelPlural":"Line Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Localization__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Localization","labelPlural":"Change Event: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Localization__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Localization","labelPlural":"Share: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0U","label":"Localization","labelPlural":"Localizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Localization__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Localization__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupData__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Data","labelPlural":"Change Event: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupData__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Data","labelPlural":"Share: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0V","label":"Lookup + Data","labelPlural":"Lookup Data","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupQuery__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Query","labelPlural":"Change Event: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupQuery__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Query","labelPlural":"Share: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0W","label":"Lookup + Query","labelPlural":"Lookup Queries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OptionConstraint__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Option Constraint","labelPlural":"Change Event: Option Constraint","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0X","label":"Option + Constraint","labelPlural":"Option Constraints","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Rate","labelPlural":"Change Event: Order + Product Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Y","label":"Order + Product Consumption Rate","labelPlural":"Order Product Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Schedule","labelPlural":"Change Event: Order + Product Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Product Consumption Schedule","labelPlural":"Share: Order Product Consumption + Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Z","label":"Order + Product Consumption Schedule","labelPlural":"Order Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Action","labelPlural":"Change Event: Price Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0a","label":"Price + Action","labelPlural":"Price Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Condition","labelPlural":"Change Event: Price Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0b","label":"Price + Condition","labelPlural":"Price Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Rule","labelPlural":"Change Event: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Rule","labelPlural":"Share: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0c","label":"Price + Rule","labelPlural":"Price Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PriceRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Schedule","labelPlural":"Change Event: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Schedule","labelPlural":"History: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Schedule","labelPlural":"Share: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0d","label":"Price + Schedule","labelPlural":"Price Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Tier","labelPlural":"Change Event: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Tier","labelPlural":"History: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0e","label":"Price + Tier","labelPlural":"Price Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance Tier","labelPlural":"Change Event: Pricing Guidance + Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance Tier","labelPlural":"History: Pricing Guidance Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0f","label":"Pricing + Guidance Tier","labelPlural":"Pricing Guidance Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance","labelPlural":"Change Event: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance","labelPlural":"History: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PricingGuidance__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Pricing Guidance","labelPlural":"Share: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0g","label":"Pricing + Guidance","labelPlural":"Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Condition","labelPlural":"Change Event: Process Input + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0h","label":"Process + Input Condition","labelPlural":"Process Input Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Values","labelPlural":"Change Event: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Process Input Values","labelPlural":"Share: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0i","label":"Process + Input Values","labelPlural":"Process Input Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInput__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input","labelPlural":"Change Event: Process Input","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0j","label":"Process + Input","labelPlural":"Process Inputs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Action","labelPlural":"Change Event: Product Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0k","label":"Product + Action","labelPlural":"Product Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Attribute Set","labelPlural":"Change Event: Product Attribute + Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Attribute Set","labelPlural":"Share: Product Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0l","label":"Product + Attribute Set","labelPlural":"Product Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Item","labelPlural":"Change Event: Attribute Item","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0m","label":"Attribute + Item","labelPlural":"Attribute Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductFeature__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Feature","labelPlural":"Change Event: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductFeature__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Feature","labelPlural":"Share: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0n","label":"Product + Feature","labelPlural":"Product Features","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductOption__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Option","labelPlural":"Change Event: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductOption__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Option","labelPlural":"Share: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0o","label":"Product + Option","labelPlural":"Product Options","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Rule","labelPlural":"Change Event: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Rule","labelPlural":"Share: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0p","label":"Product + Rule","labelPlural":"Product Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ProductRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Document","labelPlural":"Change Event: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Document","labelPlural":"History: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0q","label":"Quote + Document","labelPlural":"Quote Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Rate","labelPlural":"Change Event: Quote Line + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0r","label":"Quote + Line Consumption Rate","labelPlural":"Quote Line Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Schedule","labelPlural":"Change Event: Quote + Line Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0s","label":"Quote + Line Consumption Schedule","labelPlural":"Quote Line Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Group","labelPlural":"Change Event: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Group","labelPlural":"History: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0t","label":"Quote + Line Group","labelPlural":"Quote Line Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Pricing Guidance","labelPlural":"Change Event: Quote Line + Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Pricing Guidance","labelPlural":"History: Quote Line Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0u","label":"Quote + Line Pricing Guidance","labelPlural":"Quote Line Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line","labelPlural":"Change Event: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line","labelPlural":"History: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0v","label":"Quote + Line","labelPlural":"Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteProcess__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Process","labelPlural":"Change Event: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteProcess__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Process","labelPlural":"Share: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0w","label":"Quote + Process","labelPlural":"Quote Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteProcess__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Template","labelPlural":"Change Event: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Template","labelPlural":"History: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Template","labelPlural":"Share: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0x","label":"Quote + Template","labelPlural":"Quote Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTemplate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTerm__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Term","labelPlural":"Change Event: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTerm__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Term","labelPlural":"Share: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0y","label":"Quote + Term","labelPlural":"Quote Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTerm__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote","labelPlural":"Change Event: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote","labelPlural":"History: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Quote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote","labelPlural":"Share: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0z","label":"Quote","labelPlural":"Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Quote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Quote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RecordJob__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Record Job","labelPlural":"Change Event: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RecordJob__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Record Job","labelPlural":"Share: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a10","label":"Record + Job","labelPlural":"Record Jobs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RelatedContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Additional Document","labelPlural":"Change Event: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RelatedContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Additional Document","labelPlural":"Share: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a12","label":"Additional + Document","labelPlural":"Additional Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchFilter__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Filter","labelPlural":"Change Event: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchFilter__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Filter","labelPlural":"Share: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a14","label":"Search + Filter","labelPlural":"Search Filters","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SearchFilter__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchIndex__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Index","labelPlural":"Change Event: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchIndex__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Index","labelPlural":"Share: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a15","label":"Search + Index","labelPlural":"Search Index","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Solution Group","labelPlural":"Change Event: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Solution Group","labelPlural":"History: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SolutionGroup__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Solution Group","labelPlural":"Share: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a16","label":"Solution + Group","labelPlural":"Solution Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SolutionGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedAsset__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Asset","labelPlural":"Change Event: Subscribed Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a17","label":"Subscribed + Asset","labelPlural":"Subscribed Assets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Quote Line","labelPlural":"Change Event: Subscribed Quote + Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscribed Quote Line","labelPlural":"Share: Subscribed Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a18","label":"Subscribed + Quote Line","labelPlural":"Subscribed Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Rate","labelPlural":"Change Event: Subscription + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a19","label":"Subscription + Consumption Rate","labelPlural":"Subscription Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Schedule","labelPlural":"Change Event: Subscription + Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1A","label":"Subscription + Consumption Schedule","labelPlural":"Subscription Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Subscription__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription","labelPlural":"Change Event: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Subscription__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscription","labelPlural":"Share: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1B","label":"Subscription","labelPlural":"Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SummaryVariable__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Summary Variable","labelPlural":"Change Event: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SummaryVariable__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Summary Variable","labelPlural":"Share: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1C","label":"Summary + Variable","labelPlural":"Summary Variables","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SummaryVariable__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TaxExemptionCertificate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Tax Exemption Certificate","labelPlural":"Change Event: Tax Exemption + Certificate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1D","label":"Tax + Exemption Certificate","labelPlural":"Tax Exemption Certificates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Content","labelPlural":"Change Event: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TemplateContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Template Content","labelPlural":"Share: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1E","label":"Template + Content","labelPlural":"Template Content","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__TemplateContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateSection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Section","labelPlural":"Change Event: Template Section","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1F","label":"Template + Section","labelPlural":"Template Sections","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TermCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Term Condition","labelPlural":"Change Event: Term Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1G","label":"Term + Condition","labelPlural":"Term Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Theme__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Theme","labelPlural":"Change Event: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Theme__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Theme","labelPlural":"Share: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1H","label":"Theme","labelPlural":"Themes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Theme__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Theme__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TimingLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Timing Log","labelPlural":"Change Event: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TimingLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Timing Log","labelPlural":"Share: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1I","label":"Timing + Log","labelPlural":"Timing Logs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__UpgradeSource__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Upgrade Source","labelPlural":"Change Event: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__UpgradeSource__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Upgrade Source","labelPlural":"Share: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1J","label":"Upgrade + Source","labelPlural":"Upgrade Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote Line","labelPlural":"Change Event: Web Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1K","label":"Web + Quote Line","labelPlural":"Web Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote","labelPlural":"Change Event: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Web Quote","labelPlural":"History: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__WebQuote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Web Quote","labelPlural":"Share: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1L","label":"Web + Quote","labelPlural":"Web Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__WebQuote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J4","label":"Service + Provider SAML Attribute","labelPlural":"Service Provider SAML Attributes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SPSamlAttributes","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SPSamlAttributes/{ID}","describe":"/services/data/v58.0/sobjects/SPSamlAttributes/describe","sobject":"/services/data/v58.0/sobjects/SPSamlAttributes"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0LE","label":"SAML + Single Sign-On Setting","labelPlural":"SAML Single Sign-On Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SamlSsoConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SamlSsoConfig/{ID}","describe":"/services/data/v58.0/sobjects/SamlSsoConfig/describe","sobject":"/services/data/v58.0/sobjects/SamlSsoConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hA","label":"Scheduling + Constraint","labelPlural":"Scheduling Constraints","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingConstraint","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraint/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SchedulingConstraint/describe","layouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingConstraint"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SchedulingConstraint","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scheduling + Constraint Share","labelPlural":"Scheduling Constraint Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingConstraintShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraintShare/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingConstraintShare/describe","sobject":"/services/data/v58.0/sobjects/SchedulingConstraintShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0no","label":"Scheduling + Objective","labelPlural":"Scheduling Objectives","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingObjective","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjective/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjective/describe","layouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingObjective"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0np","label":"Scheduling + Objective Parameter","labelPlural":"Scheduling Objective Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingObjectiveParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Md","label":"Scheduling + Rule","labelPlural":"Scheduling Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingRule/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRule/describe","layouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hm","label":"Scheduling + Rule Parameter","labelPlural":"Scheduling Rule Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingRuleParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingRuleParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRuleParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingRuleParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01N","label":"Custom + S-Control","labelPlural":"Custom S-Controls","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Scontrol","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Scontrol/{ID}","describe":"/services/data/v58.0/sobjects/Scontrol/describe","sobject":"/services/data/v58.0/sobjects/Scontrol"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01f","label":"Scorecard","labelPlural":"Scorecards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Scorecard","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Scorecard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Scorecard/{ID}","describe":"/services/data/v58.0/sobjects/Scorecard/describe","layouts":"/services/data/v58.0/sobjects/Scorecard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Scorecard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qn","label":"Scorecard + Association","labelPlural":"Scorecard Associations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ScorecardAssociation","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardAssociation/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardAssociation/describe","layouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardAssociation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Om","label":"Scorecard + Metric","labelPlural":"Scorecard Metrics","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ScorecardMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardMetric/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardMetric/describe","layouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardMetric"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Scorecard","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scorecard + Share","labelPlural":"Scorecard Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ScorecardShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ScorecardShare/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardShare/describe","sobject":"/services/data/v58.0/sobjects/ScorecardShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4co","label":"Search + Layout","labelPlural":"Search Layouts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SearchLayout","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchLayout/{ID}","describe":"/services/data/v58.0/sobjects/SearchLayout/describe","sobject":"/services/data/v58.0/sobjects/SearchLayout"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MD","label":"Promoted + Search Term","labelPlural":"Promoted Search Terms","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SearchPromotionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchPromotionRule/{ID}","describe":"/services/data/v58.0/sobjects/SearchPromotionRule/describe","layouts":"/services/data/v58.0/sobjects/SearchPromotionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SearchPromotionRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09v","label":"Security + Custom Baseline","labelPlural":"Security Custom Baselines","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SecurityCustomBaseline","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SecurityCustomBaseline/{ID}","describe":"/services/data/v58.0/sobjects/SecurityCustomBaseline/describe","sobject":"/services/data/v58.0/sobjects/SecurityCustomBaseline"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0q6","label":"Seller","labelPlural":"Sellers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Seller","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Seller/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Seller/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Seller/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Seller/describe","layouts":"/services/data/v58.0/sobjects/Seller/describe/layouts","sobject":"/services/data/v58.0/sobjects/Seller"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Seller","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + History","labelPlural":"Seller History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerHistory/{ID}","describe":"/services/data/v58.0/sobjects/SellerHistory/describe","sobject":"/services/data/v58.0/sobjects/SellerHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Seller","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + Share","labelPlural":"Seller Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerShare/{ID}","describe":"/services/data/v58.0/sobjects/SellerShare/describe","sobject":"/services/data/v58.0/sobjects/SellerShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sentry_Active_Config__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sentry Active Config","labelPlural":"Change Event: Sentry Active Config","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1S","label":"Sentry + Active Config","labelPlural":"Sentry Active Config","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe","quickActions":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m00","label":"Sentry + Config","labelPlural":"Sentry Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sentry_Config__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Config__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe","layouts":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Config__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"e00","label":"Sentry + Error","labelPlural":"Sentry Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Error__e","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Error__e/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Error__e/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Error__e/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Error__e"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jR","label":"Serialized + Product","labelPlural":"Serialized Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProduct","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProduct/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProduct/describe","quickActions":"/services/data/v58.0/sobjects/SerializedProduct/quickActions","layouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProduct"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Feed","labelPlural":"Serialized Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product History","labelPlural":"Serialized Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SerializedProduct","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Share","labelPlural":"Serialized Product Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductShare/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductShare/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jM","label":"Serialized + Product Transaction","labelPlural":"Serialized Product Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProductTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe","layouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProductTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction Feed","labelPlural":"Serialized Product Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction History","labelPlural":"Serialized Product Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08p","label":"Service + Appointment","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Share","labelPlural":"Service Appointment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Status Value","labelPlural":"Service Appointment Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"810","label":"Service + Contract","labelPlural":"Service Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceContract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceContract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceContract/describe","quickActions":"/services/data/v58.0/sobjects/ServiceContract/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceContract/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceContract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Change Event","labelPlural":"Service Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Feed","labelPlural":"Service Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract History","labelPlural":"Service Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceContract","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Share","labelPlural":"Service Contract Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cr","label":"Service + Crew","labelPlural":"Service Crews","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrew","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrew/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrew/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrew/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrew"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Change Event","labelPlural":"Service Crew Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Feed","labelPlural":"Service Crew Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew History","labelPlural":"Service Crew History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cm","label":"Service + Crew Member","labelPlural":"Service Crew Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrewMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrewMember/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrewMember/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrewMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Change Event","labelPlural":"Service Crew Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Feed","labelPlural":"Service Crew Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member History","labelPlural":"Service Crew Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceCrew","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Share","labelPlural":"Service Crew Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SR","label":"Service + Report","labelPlural":"Service Reports","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReport/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReport/describe","sobject":"/services/data/v58.0/sobjects/ServiceReport"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Change Event","labelPlural":"Service Report Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report History","labelPlural":"Service Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SL","label":"Service + Report Layout","labelPlural":"Service Report Layouts","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ServiceReportLayout","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayout/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportLayout/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayout"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReportLayout","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Layout Change Event","labelPlural":"Service Report Layout Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportLayoutChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hn","label":"Service + Resource","labelPlural":"Service Resources","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResource/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResource/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hy","label":"Resource + Capacity","labelPlural":"Resource Capacities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceCapacity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourceCapacity/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Change Event","labelPlural":"Resource Capacity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Feed","labelPlural":"Resource Capacity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity History","labelPlural":"Resource Capacity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Change Event","labelPlural":"Service Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Feed","labelPlural":"Service Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource History","labelPlural":"Service Resource History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0l6","label":"Service + Resource Preference","labelPlural":"Service Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreference/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourcePreference/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreference"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ServiceResourcePreference not found in section + StandardFeedLabel","labelPlural":"__MISSING LABEL__ PropertyFile - val ServiceResourcePreference + not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference History","labelPlural":"Service Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResourcePreference","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference Share","labelPlural":"Service Resource Preference Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResource","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Share","labelPlural":"Service Resource Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hv","label":"Service + Resource Skill","labelPlural":"Service Resource Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe","layouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Change Event","labelPlural":"Service Resource Skill Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Feed","labelPlural":"Service Resource Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill History","labelPlural":"Service Resource Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9gd","label":"Service + Setup Provisioning","labelPlural":"Service Setup Provisionings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceSetupProvisioning","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/{ID}","describe":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/describe","sobject":"/services/data/v58.0/sobjects/ServiceSetupProvisioning"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hh","label":"Service + Territory","labelPlural":"Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritory/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritory/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritory/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Change Event","labelPlural":"Service Territory Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Feed","labelPlural":"Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory History","labelPlural":"Service Territory History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1Sl","label":"Service + Territory Location","labelPlural":"Service Territory Locations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Change Event","labelPlural":"Service Territory Location + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Feed","labelPlural":"Service Territory Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Territory + Location History","labelPlural":"Territory Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hu","label":"Service + Territory Member","labelPlural":"Service Territory Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritoryMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Change Event","labelPlural":"Service Territory Member Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Feed","labelPlural":"Service Territory Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member History","labelPlural":"Service Territory Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceTerritory","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Share","labelPlural":"Service Territory Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zh","label":"Session + Hijacking Event","labelPlural":"Session Hijacking Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SessionHijackingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SessionHijackingEvent/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zj","label":"Session + Hijacking Event Store","labelPlural":"Session Hijacking Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SessionHijackingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/SessionHijackingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SessionHijackingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Session + Hijacking Event Store Feed","labelPlural":"Session Hijacking Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Pa","label":"Session + Permission Set Activation","labelPlural":"Session Permission Set Activations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SessionPermSetActivation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionPermSetActivation/{ID}","describe":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe","layouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionPermSetActivation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Ys","label":"Setup + Assistant Step","labelPlural":"Setup Assistant Steps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAssistantStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAssistantStep/{ID}","describe":"/services/data/v58.0/sobjects/SetupAssistantStep/describe","sobject":"/services/data/v58.0/sobjects/SetupAssistantStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ym","label":"Setup + Audit Trail Entry","labelPlural":"Setup Audit Trail Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAuditTrail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAuditTrail/{ID}","describe":"/services/data/v58.0/sobjects/SetupAuditTrail/describe","sobject":"/services/data/v58.0/sobjects/SetupAuditTrail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J0","label":"Setup + Entity Access","labelPlural":"Setup Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/SetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/SetupEntityAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m01","label":"Setup + Configuration Data","labelPlural":"Setup Configuration Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Configuration_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m02","label":"Setup + Connection Data","labelPlural":"Setup Connection Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Connection_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Data__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Data","labelPlural":"Change Event: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Setup_Data__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Setup Data","labelPlural":"Share: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__Share/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Data__Share/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1T","label":"Setup + Data","labelPlural":"Setup Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Data__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Setup_Data__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Data__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Data__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Settings__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Settings","labelPlural":"Change Event: Setup Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1U","label":"Setup + Settings","labelPlural":"Setup Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__c/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Settings__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Settings__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Settings__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Settings__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0a0","label":"Shift","labelPlural":"Shifts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shift","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shift/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shift/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shift/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shift/describe","quickActions":"/services/data/v58.0/sobjects/Shift/quickActions","layouts":"/services/data/v58.0/sobjects/Shift/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shift"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Change Event","labelPlural":"Shift Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Feed","labelPlural":"Shift Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + History","labelPlural":"Shift History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w1","label":"Shift + Pattern","labelPlural":"Shift Patterns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPattern","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPattern/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShiftPattern/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPattern/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPattern"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Change Event","labelPlural":"Shift Pattern Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w2","label":"Shift + Pattern Entry","labelPlural":"Shift Pattern Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPatternEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntry/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPatternEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Change Event","labelPlural":"Shift Pattern Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Feed","labelPlural":"Shift Pattern Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry History","labelPlural":"Shift Pattern Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Feed","labelPlural":"Shift Pattern Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern History","labelPlural":"Shift Pattern History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftPattern","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Share","labelPlural":"Shift Pattern Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shift","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Share","labelPlural":"Shift Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Status Value","labelPlural":"Shift Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftStatus/{ID}","describe":"/services/data/v58.0/sobjects/ShiftStatus/describe","sobject":"/services/data/v58.0/sobjects/ShiftStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iJ","label":"Shift + Template","labelPlural":"Shift Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplate/describe","layouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Change Event","labelPlural":"Shift Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Share","labelPlural":"Shift Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OB","label":"Shipment","labelPlural":"Shipments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shipment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shipment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shipment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shipment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shipment/describe","quickActions":"/services/data/v58.0/sobjects/Shipment/quickActions","layouts":"/services/data/v58.0/sobjects/Shipment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shipment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Change Event","labelPlural":"Shipment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShipmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShipmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShipmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Feed","labelPlural":"Shipment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + History","labelPlural":"Shipment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ob","label":"Shipment + Item","labelPlural":"Shipment Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ShipmentItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShipmentItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShipmentItem/describe","quickActions":"/services/data/v58.0/sobjects/ShipmentItem/quickActions","layouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShipmentItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shipment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Share","labelPlural":"Shipment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentShare/describe","sobject":"/services/data/v58.0/sobjects/ShipmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DM","label":"Site","labelPlural":"Sites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Site","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Site/{ID}","describe":"/services/data/v58.0/sobjects/Site/describe","sobject":"/services/data/v58.0/sobjects/Site"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GV","label":"Site + Detail","labelPlural":"Site Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteDetail/{ID}","describe":"/services/data/v58.0/sobjects/SiteDetail/describe","sobject":"/services/data/v58.0/sobjects/SiteDetail"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site","labelPlural":"Site","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteFeed/{ID}","describe":"/services/data/v58.0/sobjects/SiteFeed/describe","sobject":"/services/data/v58.0/sobjects/SiteFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site + History","labelPlural":"Site History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteHistory/{ID}","describe":"/services/data/v58.0/sobjects/SiteHistory/describe","sobject":"/services/data/v58.0/sobjects/SiteHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xs","label":"Trusted + Domains for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteIframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H0","label":"Site + Redirect Mapping","labelPlural":"Site Redirect Mapping","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteRedirectMapping","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteRedirectMapping/{ID}","describe":"/services/data/v58.0/sobjects/SiteRedirectMapping/describe","sobject":"/services/data/v58.0/sobjects/SiteRedirectMapping"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C5","label":"Skill","labelPlural":"Skills","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Skill","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Skill/{ID}","describe":"/services/data/v58.0/sobjects/Skill/describe","sobject":"/services/data/v58.0/sobjects/Skill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Skill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Change Event","labelPlural":"Skill Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hx","label":"Skill + Requirement","labelPlural":"Skill Requirements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SkillRequirement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SkillRequirement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SkillRequirement/describe","layouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/layouts","sobject":"/services/data/v58.0/sobjects/SkillRequirement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Change Event","labelPlural":"Skill Requirement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Feed","labelPlural":"Skill Requirement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementFeed/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementFeed/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement History","labelPlural":"Skill Requirement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementHistory/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementHistory/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"13B","label":"Skill + Type","labelPlural":"Skill Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillType/{ID}","describe":"/services/data/v58.0/sobjects/SkillType/describe","sobject":"/services/data/v58.0/sobjects/SkillType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"552","label":"Entitlement + Process","labelPlural":"Entitlement Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SlaProcess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SlaProcess/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SlaProcess/{ID}","describe":"/services/data/v58.0/sobjects/SlaProcess/describe","layouts":"/services/data/v58.0/sobjects/SlaProcess/describe/layouts","sobject":"/services/data/v58.0/sobjects/SlaProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"501","label":"Solution","labelPlural":"Solutions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Solution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Solution/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Solution/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Solution/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Solution/describe","layouts":"/services/data/v58.0/sobjects/Solution/describe/layouts","sobject":"/services/data/v58.0/sobjects/Solution"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Feed","labelPlural":"Solution Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SolutionFeed/describe","sobject":"/services/data/v58.0/sobjects/SolutionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + History","labelPlural":"Solution History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SolutionHistory/describe","sobject":"/services/data/v58.0/sobjects/SolutionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Status Value","labelPlural":"Solution Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionStatus/{ID}","describe":"/services/data/v58.0/sobjects/SolutionStatus/describe","sobject":"/services/data/v58.0/sobjects/SolutionStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xv","label":"Source + Change Notification","labelPlural":"Source Change Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SourceChangeNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SourceChangeNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/SourceChangeNotification/eventSchema","describe":"/services/data/v58.0/sobjects/SourceChangeNotification/describe","sobject":"/services/data/v58.0/sobjects/SourceChangeNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ST","label":"Stamp","labelPlural":"Stamps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stamp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stamp/{ID}","describe":"/services/data/v58.0/sobjects/Stamp/describe","sobject":"/services/data/v58.0/sobjects/Stamp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SA","label":"Stamp + Assignment","labelPlural":"Stamp Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StampAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StampAssignment/{ID}","describe":"/services/data/v58.0/sobjects/StampAssignment/describe","sobject":"/services/data/v58.0/sobjects/StampAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"081","label":"Static + Resource","labelPlural":"Static Resources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"StaticResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StaticResource/{ID}","describe":"/services/data/v58.0/sobjects/StaticResource/describe","sobject":"/services/data/v58.0/sobjects/StaticResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0M6","label":"Streaming + Channel","labelPlural":"Streaming Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"StreamingChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/StreamingChannel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/StreamingChannel/describe","layouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/layouts","push":"/services/data/v58.0/sobjects/StreamingChannel/{ID}/push","sobject":"/services/data/v58.0/sobjects/StreamingChannel"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"StreamingChannel","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Streaming + Channel Share","labelPlural":"Streaming Channel Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StreamingChannelShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StreamingChannelShare/{ID}","describe":"/services/data/v58.0/sobjects/StreamingChannelShare/describe","sobject":"/services/data/v58.0/sobjects/StreamingChannelShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Stripe_Connection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Stripe_Connection","labelPlural":"Change Event: Stripe_Connection","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1V","label":"Stripe_Connection","labelPlural":"Stripe_Connection","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__c/{ID}","describe":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe","quickActions":"/services/data/v58.0/sobjects/Stripe_Connection__c/quickActions","layouts":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sW","label":"Swarm","labelPlural":"Swarms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Swarm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Swarm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Swarm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Swarm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Swarm/describe","quickActions":"/services/data/v58.0/sobjects/Swarm/quickActions","layouts":"/services/data/v58.0/sobjects/Swarm/describe/layouts","sobject":"/services/data/v58.0/sobjects/Swarm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Feed","labelPlural":"Swarm Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + History","labelPlural":"Swarm History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sR","label":"Swarm + Member","labelPlural":"Swarm Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SwarmMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SwarmMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SwarmMember/describe","quickActions":"/services/data/v58.0/sobjects/SwarmMember/quickActions","layouts":"/services/data/v58.0/sobjects/SwarmMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/SwarmMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Feed","labelPlural":"Swarm Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member History","labelPlural":"Swarm Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SwarmMember","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Share","labelPlural":"Swarm Member Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Swarm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Share","labelPlural":"Swarm Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sync_Record__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sync Record","labelPlural":"Change Event: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Sync_Record__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Sync Record","labelPlural":"Share: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__Share/{ID}","describe":"/services/data/v58.0/sobjects/Sync_Record__Share/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1W","label":"Sync + Record","labelPlural":"Sync Management","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sync_Record__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Sync_Record__c/describe","quickActions":"/services/data/v58.0/sobjects/Sync_Record__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sync_Record__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0KD","label":"Tab + Definition","labelPlural":"Tab Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TabDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TabDefinition/{ID}","describe":"/services/data/v58.0/sobjects/TabDefinition/describe","sobject":"/services/data/v58.0/sobjects/TabDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00T","label":"Task","labelPlural":"Tasks","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Task","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Task/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Task/{ID}","describe":"/services/data/v58.0/sobjects/Task/describe","quickActions":"/services/data/v58.0/sobjects/Task/quickActions","layouts":"/services/data/v58.0/sobjects/Task/describe/layouts","sobject":"/services/data/v58.0/sobjects/Task"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Change Event","labelPlural":"Task Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TaskChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TaskChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TaskChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Feed","labelPlural":"Task Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskFeed/{ID}","describe":"/services/data/v58.0/sobjects/TaskFeed/describe","sobject":"/services/data/v58.0/sobjects/TaskFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Priority Value","labelPlural":"Task Priority Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskPriority","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskPriority/{ID}","describe":"/services/data/v58.0/sobjects/TaskPriority/describe","sobject":"/services/data/v58.0/sobjects/TaskPriority"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Status Value","labelPlural":"Task Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskStatus/{ID}","describe":"/services/data/v58.0/sobjects/TaskStatus/describe","sobject":"/services/data/v58.0/sobjects/TaskStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UT","label":"Tenant + Usage Entitlement","labelPlural":"Tenant Usage Entitlements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"TenantUsageEntitlement","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TenantUsageEntitlement/{ID}","describe":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe","layouts":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/TenantUsageEntitlement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hd","label":"Test + Suite Membership","labelPlural":"Test Suite Memberships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TestSuiteMembership","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TestSuiteMembership/{ID}","describe":"/services/data/v58.0/sobjects/TestSuiteMembership/describe","sobject":"/services/data/v58.0/sobjects/TestSuiteMembership"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jr","label":"Third + Party Account Link","labelPlural":"Third Party Account Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThirdPartyAccountLink","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/{ID}","describe":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/describe","sobject":"/services/data/v58.0/sobjects/ThirdPartyAccountLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hY","label":"Threat + Detection Feedback","labelPlural":"Threat Detection Feedback","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ThreatDetectionFeedback","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe","quickActions":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/quickActions","layouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/layouts","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedback"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ThreatDetectionFeedback","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Threat + Detection Feedback Feed","labelPlural":"Threat Detection Feedback Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThreatDetectionFeedbackFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/describe","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ts","label":"Time + Sheet","labelPlural":"Time Sheets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheet/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheet/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheet/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheet"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Change Event","labelPlural":"Time Sheet Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1te","label":"Time + Sheet Entry","labelPlural":"Time Sheet Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheetEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheetEntry/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheetEntry/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheetEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Change Event","labelPlural":"Time Sheet Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Feed","labelPlural":"Time Sheet Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry History","labelPlural":"Time Sheet Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Feed","labelPlural":"Time Sheet Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet History","labelPlural":"Time Sheet History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TimeSheet","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Share","labelPlural":"Time Sheet Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetShare/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetShare/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gj","label":"Time + Slot","labelPlural":"Time Slots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/TimeSlot/describe","layouts":"/services/data/v58.0/sobjects/TimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSlot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Slot Change Event","labelPlural":"Time Slot Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSlotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSlotChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jz","label":"Goal","labelPlural":"Goals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoal","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoal/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoal/describe","sobject":"/services/data/v58.0/sobjects/TodayGoal"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TodayGoal","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Goal + Share","labelPlural":"Goal Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoalShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoalShare/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoalShare/describe","sobject":"/services/data/v58.0/sobjects/TodayGoalShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TO","label":"Topic","labelPlural":"Topics","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Topic","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Topic/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Topic/{ID}","describe":"/services/data/v58.0/sobjects/Topic/describe","layouts":"/services/data/v58.0/sobjects/Topic/describe/layouts","sobject":"/services/data/v58.0/sobjects/Topic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FT","label":"Topic + Assignment","labelPlural":"Topic Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicAssignment/{ID}","describe":"/services/data/v58.0/sobjects/TopicAssignment/describe","sobject":"/services/data/v58.0/sobjects/TopicAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Topic","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Topic + Feed","labelPlural":"Topic Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicFeed/{ID}","describe":"/services/data/v58.0/sobjects/TopicFeed/describe","sobject":"/services/data/v58.0/sobjects/TopicFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0te","label":"Topic + User Event","labelPlural":"Topic User Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicUserEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicUserEvent/{ID}","describe":"/services/data/v58.0/sobjects/TopicUserEvent/describe","sobject":"/services/data/v58.0/sobjects/TopicUserEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0NI","label":"Transaction + Security Policy","labelPlural":"Transaction Security Policies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TransactionSecurityPolicy","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/{ID}","describe":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/describe","sobject":"/services/data/v58.0/sobjects/TransactionSecurityPolicy"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01h","label":"Language + Translation","labelPlural":"Language Translation","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Translation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Translation/{ID}","describe":"/services/data/v58.0/sobjects/Translation/describe","sobject":"/services/data/v58.0/sobjects/Translation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5pL","label":"Travel + Mode","labelPlural":"Travel Modes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TravelMode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TravelMode/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TravelMode/describe","quickActions":"/services/data/v58.0/sobjects/TravelMode/quickActions","layouts":"/services/data/v58.0/sobjects/TravelMode/describe/layouts","sobject":"/services/data/v58.0/sobjects/TravelMode"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TravelMode","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Feed","labelPlural":"Travel Mode Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeFeed/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeFeed/describe","sobject":"/services/data/v58.0/sobjects/TravelModeFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TravelMode","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Share","labelPlural":"Travel Mode Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeShare/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeShare/describe","sobject":"/services/data/v58.0/sobjects/TravelModeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gp","label":"Ui + Formula Criterion","labelPlural":"Ui Formula Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaCriterion/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09t","label":"Ui + Formula Rule","labelPlural":"Ui Formula Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaRule/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaRule/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Undecided + Event Relation","labelPlural":"Undecided Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UndecidedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UndecidedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/UndecidedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/UndecidedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hE","label":"Unit + of Measure","labelPlural":"Units of Measure","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UnitOfMeasure","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasure/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UnitOfMeasure/describe","layouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/layouts","sobject":"/services/data/v58.0/sobjects/UnitOfMeasure"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UnitOfMeasure","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Unit + of Measure Share","labelPlural":"Unit of Measure Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UnitOfMeasureShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasureShare/{ID}","describe":"/services/data/v58.0/sobjects/UnitOfMeasureShare/describe","sobject":"/services/data/v58.0/sobjects/UnitOfMeasureShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uw","label":"URI + Event","labelPlural":"URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEvent/{ID}","describe":"/services/data/v58.0/sobjects/UriEvent/describe","sobject":"/services/data/v58.0/sobjects/UriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ux","label":"URI + Event Stream ","labelPlural":"URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/UriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/UriEventStream/describe","sobject":"/services/data/v58.0/sobjects/UriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"005","label":"User","labelPlural":"Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"User","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/User/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/User/{ID}","namedLayouts":"/services/data/v58.0/sobjects/User/describe/namedLayouts/{LayoutName}","passwordUtilities":"/services/data/v58.0/sobjects/User/{ID}/password","describe":"/services/data/v58.0/sobjects/User/describe","quickActions":"/services/data/v58.0/sobjects/User/quickActions","layouts":"/services/data/v58.0/sobjects/User/describe/layouts","sobject":"/services/data/v58.0/sobjects/User"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ds","label":"Last + Used App","labelPlural":"Last Used App","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppInfo/{ID}","describe":"/services/data/v58.0/sobjects/UserAppInfo/describe","sobject":"/services/data/v58.0/sobjects/UserAppInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nw","label":"UserAppMenuCustomization","labelPlural":"UserAppMenuCustomizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomization/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomization/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomization"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserAppMenuCustomization","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"UserAppMenuCustomization + Share","labelPlural":"UserAppMenuCustomization Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomizationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07p","label":"Application","labelPlural":"Applications","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UserAppMenuItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuItem/describe","layouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserAppMenuItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Change Event","labelPlural":"User Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/UserChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/UserChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/UserChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UV","label":"User + Email Preferred Person","labelPlural":"User Email Preferred People","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPerson","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPerson"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserEmailPreferredPerson","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Email Preferred Person Share","labelPlural":"User Email Preferred Person Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPersonShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07u","label":"User + Entity Access","labelPlural":"User Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserEntityAccess"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Feed","labelPlural":"User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFeed/{ID}","describe":"/services/data/v58.0/sobjects/UserFeed/describe","sobject":"/services/data/v58.0/sobjects/UserFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fp","label":"User + Field Access","labelPlural":"User Field Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFieldAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFieldAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserFieldAccess/describe","sobject":"/services/data/v58.0/sobjects/UserFieldAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"100","label":"User + License","labelPlural":"User Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserLicense/describe","sobject":"/services/data/v58.0/sobjects/UserLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Na","label":"User + List View","labelPlural":"User List View","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListView/{ID}","describe":"/services/data/v58.0/sobjects/UserListView/describe","sobject":"/services/data/v58.0/sobjects/UserListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JU","label":"User + List View Criteria","labelPlural":"User List View Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListViewCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListViewCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UserListViewCriterion/describe","sobject":"/services/data/v58.0/sobjects/UserListViewCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yw","label":"User + Login","labelPlural":"User Login","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLogin/{ID}","describe":"/services/data/v58.0/sobjects/UserLogin/describe","sobject":"/services/data/v58.0/sobjects/UserLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"051","label":"User + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User + Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User + Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User + Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User + Provisioning Account Staging","labelPlural":"User Provisioning Account Stagings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccountStaging","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccountStaging/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccountStaging/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccountStaging"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HX","label":"User + Provisioning Mock Target","labelPlural":"User Provisioning Mock Targets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvMockTarget","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvMockTarget/{ID}","describe":"/services/data/v58.0/sobjects/UserProvMockTarget/describe","sobject":"/services/data/v58.0/sobjects/UserProvMockTarget"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Je","label":"User + Provisioning Config","labelPlural":"User Provisioning Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningConfig/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningConfig/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hs","label":"User + Provisioning Log","labelPlural":"User Provisioning Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningLog/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningLog/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HP","label":"User + Provisioning Request","labelPlural":"User Provisioning Requests","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe","layouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserProvisioningRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Provisioning Request Share","labelPlural":"User Provisioning Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Record Access","labelPlural":"User Record Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserRecordAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserRecordAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserRecordAccess/describe","sobject":"/services/data/v58.0/sobjects/UserRecordAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00E","label":"Role","labelPlural":"Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserRole/{ID}","describe":"/services/data/v58.0/sobjects/UserRole/describe","layouts":"/services/data/v58.0/sobjects/UserRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g2","label":"User + Setup Entity Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserSetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserSetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserSetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserSetupEntityAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"User","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0N2","label":"User + Share","labelPlural":"User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserShare/{ID}","describe":"/services/data/v58.0/sobjects/UserShare/describe","sobject":"/services/data/v58.0/sobjects/UserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qt","label":"Identity + Verification History","labelPlural":"Identity Verification History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VerificationHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VerificationHistory/{ID}","describe":"/services/data/v58.0/sobjects/VerificationHistory/describe","sobject":"/services/data/v58.0/sobjects/VerificationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OP","label":"Visualforce + Access Metric","labelPlural":"Visualforce Access Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VisualforceAccessMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/{ID}","describe":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/describe","sobject":"/services/data/v58.0/sobjects/VisualforceAccessMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"083","label":"Vote","labelPlural":"Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Vote","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Vote/{ID}","describe":"/services/data/v58.0/sobjects/Vote/describe","sobject":"/services/data/v58.0/sobjects/Vote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4V3","label":"Warranty + Term","labelPlural":"Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WarrantyTerm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/WarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/WarrantyTerm"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Change Event","labelPlural":"Warranty Term Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Feed","labelPlural":"Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term History","labelPlural":"Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WarrantyTerm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Share","labelPlural":"Warranty Term Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermShare/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermShare/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00b","label":"Custom + Button or Link","labelPlural":"Custom Buttons or Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WebLink","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WebLink/{ID}","describe":"/services/data/v58.0/sobjects/WebLink/describe","sobject":"/services/data/v58.0/sobjects/WebLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W5","label":"Access","labelPlural":"Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccess/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccess/describe","sobject":"/services/data/v58.0/sobjects/WorkAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkAccess","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Access + Share","labelPlural":"Access Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccessShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccessShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccessShare/describe","sobject":"/services/data/v58.0/sobjects/WorkAccessShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W2","label":"Badge + Received","labelPlural":"Badges Received","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadge","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadge/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadge/describe","layouts":"/services/data/v58.0/sobjects/WorkBadge/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadge"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W1","label":"Badge","labelPlural":"Badges","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadgeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/WorkBadgeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Feed","labelPlural":"Badge Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + History","labelPlural":"Badge History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkBadgeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work + Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order History","labelPlural":"Work Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1WL","label":"Work + Order Line Item","labelPlural":"Work Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/approvalLayouts","workOrderLineItemRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}/suggestedArticles","describe":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/layouts","workOrderLineItemArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/suggestedArticles","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Change Event","labelPlural":"Work Order Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Feed","labelPlural":"Work Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item History","labelPlural":"Work Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Status Value","labelPlural":"Work Order Line Item Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Share","labelPlural":"Work Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderShare/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Status Value","labelPlural":"Work Order Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gq","label":"Work + Plan","labelPlural":"Work Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlan/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlan/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Change Event","labelPlural":"Work Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Feed","labelPlural":"Work Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan History","labelPlural":"Work Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gr","label":"Work + Plan Selection Rule","labelPlural":"Work Plan Selection Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanSelectionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Change Event","labelPlural":"Work Plan Selection Rule + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Feed","labelPlural":"Work Plan Selection Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule History","labelPlural":"Work Plan Selection Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanSelectionRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Share","labelPlural":"Work Plan Selection Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Share","labelPlural":"Work Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7Iy","label":"Work + Plan Template","labelPlural":"Work Plan Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Change Event","labelPlural":"Work Plan Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8xu","label":"Work + Plan Template Entry","labelPlural":"Work Plan Template Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplateEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Change Event","labelPlural":"Work Plan Template Entry + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Feed","labelPlural":"Work Plan Template Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry History","labelPlural":"Work Plan Template Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Feed","labelPlural":"Work Plan Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template History","labelPlural":"Work Plan Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Share","labelPlural":"Work Plan Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hF","label":"Work + Step","labelPlural":"Work Steps","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStep/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStep/describe","quickActions":"/services/data/v58.0/sobjects/WorkStep/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStep/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStep"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Change Event","labelPlural":"Work Step Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Feed","labelPlural":"Work Step Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step History","labelPlural":"Work Step History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Status Value","labelPlural":"Work Step Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkStepStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4L0","label":"Work + Step Template","labelPlural":"Work Step Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStepTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStepTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkStepTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStepTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Change Event","labelPlural":"Work Step Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Feed","labelPlural":"Work Step Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template History","labelPlural":"Work Step Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkStepTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Share","labelPlural":"Work Step Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W0","label":"Thanks","labelPlural":"Thanks","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"WorkThanks","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanks/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanks/describe","layouts":"/services/data/v58.0/sobjects/WorkThanks/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkThanks"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkThanks","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Thanks + Share","labelPlural":"Thanks Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkThanksShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanksShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanksShare/describe","sobject":"/services/data/v58.0/sobjects/WorkThanksShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08q","label":"Work + Type","labelPlural":"Work Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkType/describe","quickActions":"/services/data/v58.0/sobjects/WorkType/quickActions","layouts":"/services/data/v58.0/sobjects/WorkType/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkType"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Change Event","labelPlural":"Work Type Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Feed","labelPlural":"Work Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VS","label":"Work + Type Group","labelPlural":"Work Type Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroup/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroup/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Feed","labelPlural":"Work Type Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group History","labelPlural":"Work Type Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Wz","label":"Work + Type Group Member","labelPlural":"Work Type Group Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroupMember/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member Feed","labelPlural":"Work Type Group Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member History","labelPlural":"Work Type Group Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkTypeGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2oQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:29 GMT + Set-Cookie: + - BrowserId=kaow8GxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:29 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=430/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=144000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2oQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2oQAA&product=prod_OpaSX1jqwhTgEa + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - 765ad1e9-6960-4251-9a8c-133e757b04a4 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:30 GMT + Content-Type: + - application/json + Content-Length: + - '848' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 765ad1e9-6960-4251-9a8c-133e757b04a4 + Original-Request: + - req_JggZi4STPBsVfR + Request-Id: + - req_JggZi4STPBsVfR + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHFIsgf92XbAOa4pQP3uR", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479949, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2oQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2oQAA" + }, + "nickname": null, + "product": "prod_OpaSX1jqwhTgEa", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2oQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vHFIsgf92XbAOa4pQP3uR"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:30 GMT + Set-Cookie: + - BrowserId=kezfGWxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:30 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=438/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2oQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:30 GMT + Set-Cookie: + - BrowserId=khzILmxPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:30 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=433/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/products/prod_OpaSX1jqwhTgEa + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_JggZi4STPBsVfR","request_duration_ms":240}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:30 GMT + Content-Type: + - application/json + Content-Length: + - '761' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_c9DwYejwxxzWb9 + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaSX1jqwhTgEa", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479947, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNpQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNpQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-11", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479947, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNpQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:30 GMT + Set-Cookie: + - BrowserId=kli_uWxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:30 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=439/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2pQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:31 GMT + Set-Cookie: + - BrowserId=knL_FmxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:31 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=439/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2pQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:31 GMT + Set-Cookie: + - BrowserId=ko09wWxPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:31 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=433/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=144000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2pQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2pQAA&product=prod_OpaSX1jqwhTgEa + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_c9DwYejwxxzWb9","request_duration_ms":181}}' + Idempotency-Key: + - 4787e34f-7109-4def-bef1-7a013d200e74 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:31 GMT + Content-Type: + - application/json + Content-Length: + - '848' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 4787e34f-7109-4def-bef1-7a013d200e74 + Original-Request: + - req_aCPWmvdXq8TAQd + Request-Id: + - req_aCPWmvdXq8TAQd + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHHIsgf92XbAOGhkqKLqt", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479951, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2pQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2pQAA" + }, + "nickname": null, + "product": "prod_OpaSX1jqwhTgEa", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2pQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vHHIsgf92XbAOGhkqKLqt"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:31 GMT + Set-Cookie: + - BrowserId=ktJcn2xPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:31 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=429/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2pQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:32 GMT + Set-Cookie: + - BrowserId=kw-z1WxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:32 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=434/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/products/prod_OpaSX1jqwhTgEa + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_aCPWmvdXq8TAQd","request_duration_ms":251}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:32 GMT + Content-Type: + - application/json + Content-Length: + - '761' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_Hql0F6tXmtSqqG + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaSX1jqwhTgEa", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479947, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNpQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNpQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-11", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479947, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNpQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:32 GMT + Set-Cookie: + - BrowserId=k0T1FmxPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:32 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=433/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2qQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:32 GMT + Set-Cookie: + - BrowserId=k2JAlGxPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:32 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=434/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2qQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:32 GMT + Set-Cookie: + - BrowserId=k3ttzWxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:32 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=433/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=144000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2qQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2qQAA&product=prod_OpaSX1jqwhTgEa + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_Hql0F6tXmtSqqG","request_duration_ms":190}}' + Idempotency-Key: + - b9068b16-6751-40a5-83b6-a4eca3c05236 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:33 GMT + Content-Type: + - application/json + Content-Length: + - '848' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - b9068b16-6751-40a5-83b6-a4eca3c05236 + Original-Request: + - req_dZcz3auQFcfGcX + Request-Id: + - req_dZcz3auQFcfGcX + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHIIsgf92XbAOLUEX27NH", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479952, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2qQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2qQAA" + }, + "nickname": null, + "product": "prod_OpaSX1jqwhTgEa", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2qQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vHIIsgf92XbAOLUEX27NH"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:33 GMT + Set-Cookie: + - BrowserId=k7xvLGxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:33 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=441/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2qQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:33 GMT + Set-Cookie: + - BrowserId=k_pidmxPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:33 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=436/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20OrderItem%0AWHERE%20OrderId%20=%20%278018N00000032c4QAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:33 GMT + Set-Cookie: + - BrowserId=lBet-WxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:33 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=430/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":3,"done":true,"records":[{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2oQAA"},"Id":"8028N0000005p2oQAA"},{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2pQAA"},"Id":"8028N0000005p2pQAA"},{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2qQAA"},"Id":"8028N0000005p2qQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2oQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:33 GMT + Set-Cookie: + - BrowserId=lDHFW2xPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:33 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=431/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:30 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2oQAA"},"Id":"8028N0000005p2oQAA","Product2Id":"01t8N000003DfNpQAK","IsDeleted":false,"OrderId":"8018N00000032c4QAA","PricebookEntryId":"01u8N000003e0MKQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2023-10-16","EndDate":"2024-10-15","Description":null,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:30.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:30.000+0000","OrderItemNumber":"0000000215","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihnUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__QuoteLine__c":"a0v8N000002TJgNQAW","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1O1vHFIsgf92XbAOa4pQP3uR","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1O1vHFIsgf92XbAOa4pQP3uR"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2pQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:34 GMT + Set-Cookie: + - BrowserId=lE09b2xPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=440/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:31 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2pQAA"},"Id":"8028N0000005p2pQAA","Product2Id":"01t8N000003DfNpQAK","IsDeleted":false,"OrderId":"8018N00000032c4QAA","PricebookEntryId":"01u8N000003e0MKQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2025-10-16","EndDate":"2026-10-15","Description":null,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:31.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:31.000+0000","OrderItemNumber":"0000000216","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihnUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__QuoteLine__c":"a0v8N000002TJgPQAW","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":3.0,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1O1vHHIsgf92XbAOGhkqKLqt","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1O1vHHIsgf92XbAOGhkqKLqt"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2qQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:34 GMT + Set-Cookie: + - BrowserId=lGRu6mxPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=434/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:33 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2qQAA"},"Id":"8028N0000005p2qQAA","Product2Id":"01t8N000003DfNpQAK","IsDeleted":false,"OrderId":"8018N00000032c4QAA","PricebookEntryId":"01u8N000003e0MKQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2024-10-16","EndDate":"2025-10-15","Description":null,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:33.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:33.000+0000","OrderItemNumber":"0000000217","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihnUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__QuoteLine__c":"a0v8N000002TJgOQAW","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1O1vHIIsgf92XbAOLUEX27NH","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1O1vHIIsgf92XbAOLUEX27NH"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278018N00000032c4QAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:34 GMT + Set-Cookie: + - BrowserId=lH6GQmxPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=439/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgNQAW + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:34 GMT + Set-Cookie: + - BrowserId=lJVphWxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=431/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:20 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgNQAW"},"Id":"a0v8N000002TJgNQAW","IsDeleted":false,"Name":"QL-0000569","CreatedDate":"2023-10-16T18:12:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:20.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:20.000+0000","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihnUAA","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2024-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MKQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNpQAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__SegmentLabel__c":"Year 1","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2024-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":36.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgOQAW + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:34 GMT + Set-Cookie: + - BrowserId=lLkeDGxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:34 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=432/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:20 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgOQAW"},"Id":"a0v8N000002TJgOQAW","IsDeleted":false,"Name":"QL-0000570","CreatedDate":"2023-10-16T18:12:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:20.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:20.000+0000","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihnUAA","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2025-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MKQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNpQAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__SegmentLabel__c":"Year 2","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2024-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2025-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2024-10-16","SBQQ__EffectiveSubscriptionTerm__c":36.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgPQAW + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:35 GMT + Set-Cookie: + - BrowserId=lTFb3WxPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:35 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=434/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:20 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgPQAW"},"Id":"a0v8N000002TJgPQAW","IsDeleted":false,"Name":"QL-0000571","CreatedDate":"2023-10-16T18:12:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:20.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:20.000+0000","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihnUAA","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2026-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MKQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNpQAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":3.0,"SBQQ__SegmentKey__c":"1697479938090","SBQQ__SegmentLabel__c":"Year 3","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2025-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2026-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2025-10-16","SBQQ__EffectiveSubscriptionTerm__c":36.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/subscription_schedules + body: + encoding: UTF-8 + string: end_behavior=cancel&metadata[salesforce_order_id]=8018N00000032c4QAA&metadata[salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032c4QAA&start_date=1697414400&customer=cus_OpaSLyrtXSvEoy&phases[0][items][0][price]=price_1O1vHFIsgf92XbAOa4pQP3uR&phases[0][items][0][metadata][salesforce_order_item_id]=8028N0000005p2oQAA&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2oQAA&phases[0][items][0][quantity]=1&phases[0][end_date]=1729036800&phases[0][metadata][salesforce_order_id]=8018N00000032c4QAA&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032c4QAA&phases[0][metadata][salesforce_segment_key]=1697479938090&phases[0][metadata][salesforce_segment_label]=Year++1&phases[1][items][0][price]=price_1O1vHIIsgf92XbAOLUEX27NH&phases[1][items][0][metadata][salesforce_order_item_id]=8028N0000005p2qQAA&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2qQAA&phases[1][items][0][quantity]=1&phases[1][end_date]=1760572800&phases[1][metadata][salesforce_order_id]=8018N00000032c4QAA&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032c4QAA&phases[1][metadata][salesforce_segment_key]=1697479938090&phases[1][metadata][salesforce_segment_label]=Year++2&phases[2][items][0][price]=price_1O1vHHIsgf92XbAOGhkqKLqt&phases[2][items][0][metadata][salesforce_order_item_id]=8028N0000005p2pQAA&phases[2][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2pQAA&phases[2][items][0][quantity]=1&phases[2][end_date]=1792108800&phases[2][metadata][salesforce_order_id]=8018N00000032c4QAA&phases[2][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032c4QAA&phases[2][metadata][salesforce_segment_key]=1697479938090&phases[2][metadata][salesforce_segment_label]=Year++3 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_2KpFa3AHkpeIqf","request_duration_ms":260}}' + Idempotency-Key: + - c95ac93c-6240-4645-9273-fe2d2397f333 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:36 GMT + Content-Type: + - application/json + Content-Length: + - '5268' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - c95ac93c-6240-4645-9273-fe2d2397f333 + Original-Request: + - req_KzeJHuqHvKOolV + Request-Id: + - req_KzeJHuqHvKOolV + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vHMIsgf92XbAO2PCTH1bD", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479956, + "current_phase": { + "end_date": 1729036800, + "start_date": 1697414400 + }, + "customer": "cus_OpaSLyrtXSvEoy", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1729036800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2oQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2oQAA" + }, + "plan": "price_1O1vHFIsgf92XbAOa4pQP3uR", + "price": "price_1O1vHFIsgf92XbAOa4pQP3uR", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA", + "salesforce_segment_key": "1697479938090", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1697414400, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1760572800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2qQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2qQAA" + }, + "plan": "price_1O1vHIIsgf92XbAOLUEX27NH", + "price": "price_1O1vHIIsgf92XbAOLUEX27NH", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA", + "salesforce_segment_key": "1697479938090", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1729036800, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1792108800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2pQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2pQAA" + }, + "plan": "price_1O1vHHIsgf92XbAOGhkqKLqt", + "price": "price_1O1vHHIsgf92XbAOGhkqKLqt", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA", + "salesforce_segment_key": "1697479938090", + "salesforce_segment_label": "Year 3" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1760572800, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1O1vHMIsgf92XbAOOhaqjyPj", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c4QAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"sub_sched_1O1vHMIsgf92XbAO2PCTH1bD"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:36 GMT + Set-Cookie: + - BrowserId=lcoZdGxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:36 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=440/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8018N00000032c4QAA-8018N00000032c4QAA + body: + encoding: UTF-8 + string: '{"Primary_Record_ID__c":"8018N00000032c4QAA","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8018N00000032c4QAA","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1O1vHMIsgf92XbAO2PCTH1bD","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_KzeJHuqHvKOolV"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:36 GMT + Set-Cookie: + - BrowserId=lfrtcmxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:36 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=436/5000000 + Location: + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OE2nUAG" + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"id":"a1W8N000000OE2nUAG","success":true,"errors":[],"created":true}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1O1vHMIsgf92XbAO2PCTH1bD?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_dZcz3auQFcfGcX","request_duration_ms":261}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:37 GMT + Content-Type: + - application/json + Content-Length: + - '8616' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_Sooy7Xn9MfBylL + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vHMIsgf92XbAO2PCTH1bD", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479956, + "current_phase": { + "end_date": 1729036800, + "start_date": 1697414400 + }, + "customer": "cus_OpaSLyrtXSvEoy", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1729036800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2oQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2oQAA" + }, + "plan": "price_1O1vHFIsgf92XbAOa4pQP3uR", + "price": { + "id": "price_1O1vHFIsgf92XbAOa4pQP3uR", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479949, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2oQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2oQAA" + }, + "nickname": null, + "product": "prod_OpaSX1jqwhTgEa", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA", + "salesforce_segment_key": "1697479938090", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1697414400, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1760572800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2qQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2qQAA" + }, + "plan": "price_1O1vHIIsgf92XbAOLUEX27NH", + "price": { + "id": "price_1O1vHIIsgf92XbAOLUEX27NH", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479952, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2qQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2qQAA" + }, + "nickname": null, + "product": "prod_OpaSX1jqwhTgEa", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA", + "salesforce_segment_key": "1697479938090", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1729036800, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1792108800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2pQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2pQAA" + }, + "plan": "price_1O1vHHIsgf92XbAOGhkqKLqt", + "price": { + "id": "price_1O1vHHIsgf92XbAOGhkqKLqt", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479951, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2pQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2pQAA" + }, + "nickname": null, + "product": "prod_OpaSX1jqwhTgEa", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA", + "salesforce_segment_key": "1697479938090", + "salesforce_segment_label": "Year 3" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1760572800, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1O1vHMIsgf92XbAOOhaqjyPj", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vHFIsgf92XbAOa4pQP3uR + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_Sooy7Xn9MfBylL","request_duration_ms":227}}' + Idempotency-Key: + - 35b8e519-54b6-44de-a25d-354e9743a9e4 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:37 GMT + Content-Type: + - application/json + Content-Length: + - '849' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 35b8e519-54b6-44de-a25d-354e9743a9e4 + Original-Request: + - req_Ke78AtPc8A0cgv + Request-Id: + - req_Ke78AtPc8A0cgv + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHFIsgf92XbAOa4pQP3uR", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479949, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2oQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2oQAA" + }, + "nickname": null, + "product": "prod_OpaSX1jqwhTgEa", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vHIIsgf92XbAOLUEX27NH + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_Ke78AtPc8A0cgv","request_duration_ms":278}}' + Idempotency-Key: + - 219bef79-549d-4459-9aeb-c3901a79b718 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:37 GMT + Content-Type: + - application/json + Content-Length: + - '849' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 219bef79-549d-4459-9aeb-c3901a79b718 + Original-Request: + - req_iFqTy7mP4uOioq + Request-Id: + - req_iFqTy7mP4uOioq + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHIIsgf92XbAOLUEX27NH", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479952, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2qQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2qQAA" + }, + "nickname": null, + "product": "prod_OpaSX1jqwhTgEa", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vHHIsgf92XbAOGhkqKLqt + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_iFqTy7mP4uOioq","request_duration_ms":267}}' + Idempotency-Key: + - a5d6faab-8b97-4cb5-b392-6435837ed01d + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:38 GMT + Content-Type: + - application/json + Content-Length: + - '849' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - a5d6faab-8b97-4cb5-b392-6435837ed01d + Original-Request: + - req_6zhbnyIrfQqznZ + Request-Id: + - req_6zhbnyIrfQqznZ + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHHIsgf92XbAOGhkqKLqt", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479951, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2pQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2pQAA" + }, + "nickname": null, + "product": "prod_OpaSX1jqwhTgEa", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c4QAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:38 GMT + Set-Cookie: + - BrowserId=ls2l5mxPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:38 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=449/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:36 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c4QAA"},"Id":"8018N00000032c4QAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPIHQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRgQAO","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:12:23.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000305","TotalAmount":4320.0,"CreatedDate":"2023-10-16T18:12:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:36.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:36.000+0000","LastViewedDate":"2023-10-16T18:12:36.000+0000","LastReferencedDate":"2023-10-16T18:12:36.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBcGQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":4320.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1O1vHMIsgf92XbAO2PCTH1bD","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1O1vHMIsgf92XbAO2PCTH1bD"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1O1vHMIsgf92XbAO2PCTH1bD + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_6zhbnyIrfQqznZ","request_duration_ms":294}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:38 GMT + Content-Type: + - application/json + Content-Length: + - '5268' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_Y1WjKBcORRZwMy + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vHMIsgf92XbAO2PCTH1bD", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479956, + "current_phase": { + "end_date": 1729036800, + "start_date": 1697414400 + }, + "customer": "cus_OpaSLyrtXSvEoy", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1729036800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2oQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2oQAA" + }, + "plan": "price_1O1vHFIsgf92XbAOa4pQP3uR", + "price": "price_1O1vHFIsgf92XbAOa4pQP3uR", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA", + "salesforce_segment_key": "1697479938090", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1697414400, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1760572800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2qQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2qQAA" + }, + "plan": "price_1O1vHIIsgf92XbAOLUEX27NH", + "price": "price_1O1vHIIsgf92XbAOLUEX27NH", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA", + "salesforce_segment_key": "1697479938090", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1729036800, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1792108800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2pQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2pQAA" + }, + "plan": "price_1O1vHHIsgf92XbAOGhkqKLqt", + "price": "price_1O1vHHIsgf92XbAOGhkqKLqt", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c4QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c4QAA", + "salesforce_segment_key": "1697479938090", + "salesforce_segment_label": "Year 3" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1760572800, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1O1vHMIsgf92XbAOOhaqjyPj", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_a_mdq_with_variable_discounts.yml b/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_a_mdq_with_variable_discounts.yml new file mode 100644 index 0000000000..6d88adad97 --- /dev/null +++ b/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_a_mdq_with_variable_discounts.yml @@ -0,0 +1,9774 @@ +--- +http_interactions: +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account + body: + encoding: UTF-8 + string: '{"Name":"REST Account 2023-10-16 00:00:00 UTC"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:38 GMT + Set-Cookie: + - BrowserId=lyFEfmxPEe6dhS0iYJKafA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:38 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=448/5000000 + Location: + - "/services/data/v58.0/sobjects/Account/0018N00000JbPIRQA3" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0018N00000JbPIRQA3","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:39 GMT + Set-Cookie: + - BrowserId=l2hgNWxPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:39 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=446/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + body: + encoding: UTF-8 + string: '{"Name":"REST Opportunity 2023-10-16 00:00:00 UTC","CloseDate":"2023-10-16","StageName":"Closed/Won","AccountId":"0018N00000JbPIRQA3"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:39 GMT + Set-Cookie: + - BrowserId=l4wUdGxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:39 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=444/5000000 + Location: + - "/services/data/v58.0/sobjects/Opportunity/0068N000006QZRvQAO" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0068N000006QZRvQAO","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + body: + encoding: UTF-8 + string: '{"LastName":"Bianco","Email":"order_with_mdq_licensed_product_and_discounts_2@example.com"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:39 GMT + Set-Cookie: + - BrowserId=l7oo_2xPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:39 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=444/5000000 + Location: + - "/services/data/v58.0/sobjects/Contact/0038N00000GH2wxQAD" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0038N00000GH2wxQAD","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c + body: + encoding: UTF-8 + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0068N000006QZRvQAO","SBQQ__PrimaryContact__c":"0038N00000GH2wxQAD","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscriptionTerm__c":24}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:40 GMT + Set-Cookie: + - BrowserId=l-eh-mxPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:40 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=447/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0z8N000000zBcLQAU","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + body: + encoding: UTF-8 + string: '{"Name":"REST Product2 2023-10-16 00:00:00 UTC","IsActive":true,"Description":"A + great description","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__SubscriptionTerm__c":1,"SBQQ__BillingFrequency__c":"Monthly"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:40 GMT + Set-Cookie: + - BrowserId=mE_ZymxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:40 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=447/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t8N000003DfNuQAK" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t8N000003DfNuQAK","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:41 GMT + Set-Cookie: + - BrowserId=mIG_FmxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:41 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=445/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + body: + encoding: UTF-8 + string: '{"Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNuQAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:41 GMT + Set-Cookie: + - BrowserId=mJnaa2xPEe6eVoH0UjEKMA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:41 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=446/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003e0MPQAY" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u8N000003e0MPQAY","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Dimension__c + body: + encoding: UTF-8 + string: '{"Name":"Yearly Ramp","SBQQ__Type__c":"Year","SBQQ__Product__c":"01t8N000003DfNuQAK"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:41 GMT + Set-Cookie: + - BrowserId=mMAn12xPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:41 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=448/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0D8N000004nihsUAA","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:41 GMT + Set-Cookie: + - BrowserId=mOghhWxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:41 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=453/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z8N000000zBcLQAU + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:42 GMT + Set-Cookie: + - BrowserId=mQA-A2xPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:42 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU\"},\"Id\":\"a0z8N000000zBcLQAU\",\"Name\":\"Q-00253\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIRQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRvQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIRQA3\"},\"Id\":\"0018N00000JbPIRQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRvQAO\"},\"Id\":\"0068N000006QZRvQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcLQAU\",\"AccountId\":\"0018N00000JbPIRQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t8N000003DfNuQAK + body: + encoding: UTF-8 + string: '{"context":"{\"pricebookId\":\"01s8N000002d0dzQAA\"}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:42 GMT + Set-Cookie: + - BrowserId=mWkSFGxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:42 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"Id\":\"a0D8N000004nihsUAA\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:12:41.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:12:41.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:12:41.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MPQAY\"},\"Product2Id\":\"01t8N000003DfNuQAK\",\"Id\":\"01u8N000003e0MPQAY\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU\"},\"Id\":\"a0z8N000000zBcLQAU\",\"Name\":\"Q-00253\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIRQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRvQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIRQA3\"},\"Id\":\"0018N00000JbPIRQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRvQAO\"},\"Id\":\"0068N000006QZRvQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcLQAU\",\"AccountId\":\"0018N00000JbPIRQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"Id\":\"a0D8N000004nihsUAA\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:12:41.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:12:41.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:12:41.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MPQAY\"},\"Product2Id\":\"01t8N000003DfNuQAK\",\"Id\":\"01u8N000003e0MPQAY\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:43 GMT + Set-Cookie: + - BrowserId=mcEct2xPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:43 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU\"},\"Id\":\"a0z8N000000zBcLQAU\",\"Name\":\"Q-00253\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIRQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRvQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIRQA3\"},\"Id\":\"0018N00000JbPIRQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRvQAO\"},\"Id\":\"0068N000006QZRvQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcLQAU\",\"AccountId\":\"0018N00000JbPIRQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000572\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000573\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU\"},\"Id\":\"a0z8N000000zBcLQAU\",\"Name\":\"Q-00253\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIRQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRvQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIRQA3\"},\"Id\":\"0018N00000JbPIRQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRvQAO\"},\"Id\":\"0068N000006QZRvQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcLQAU\",\"AccountId\":\"0018N00000JbPIRQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000572\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000573\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:44 GMT + Set-Cookie: + - BrowserId=mo6mNWxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:44 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU\"},\"Id\":\"a0z8N000000zBcLQAU\",\"Name\":\"Q-00253\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIRQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":2880.00,\"SBQQ__CustomerAmount__c\":2880.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRvQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIRQA3\"},\"Id\":\"0018N00000JbPIRQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRvQAO\"},\"Id\":\"0068N000006QZRvQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcLQAU\",\"AccountId\":\"0018N00000JbPIRQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000574\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000575\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + body: + encoding: UTF-8 + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU\"},\"Id\":\"a0z8N000000zBcLQAU\",\"Name\":\"Q-00253\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPIRQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRvQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIRQA3\"},\"Id\":\"0018N00000JbPIRQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRvQAO\"},\"Id\":\"0068N000006QZRvQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcLQAU\",\"AccountId\":\"0018N00000JbPIRQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000574\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000575\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"Id\":\"01t8N000003DfNuQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:46 GMT + Set-Cookie: + - BrowserId=m3o-UGxPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:46 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRvQAO\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcLQAU\",\"AccountId\":\"0018N00000JbPIRQA3\",\"Id\":\"0068N000006QZRvQAO\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPIRQA3\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JbPIRQA3\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-10-16 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00253\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":24.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0018N00000JbPIRQA3\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0068N000006QZRvQAO\",\"SBQQ__LineItemCount__c\":2.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z8N000000zBcLQAU\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgcQAG\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":1.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJgcQAG\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000574\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNuQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcLQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgdQAG\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":2.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcLQAU\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJgdQAG\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihsUAA\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihsUAA\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihsUAA\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479963671\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000575\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MPQAY\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNuQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNuQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:46 GMT + Set-Cookie: + - BrowserId=m8-x2WxPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:46 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=461/5000000 + Etag: + - '"1100e741--gzip"' + Last-Modified: + - Wed, 11 Oct 2023 19:10:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"encoding":"UTF-8","maxBatchSize":200,"sobjects":[{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pp","label":"AI + Application","labelPlural":"AI Applications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplication/{ID}","describe":"/services/data/v58.0/sobjects/AIApplication/describe","sobject":"/services/data/v58.0/sobjects/AIApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6S9","label":"AI + Application config","labelPlural":"AI Application configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplicationConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplicationConfig/{ID}","describe":"/services/data/v58.0/sobjects/AIApplicationConfig/describe","sobject":"/services/data/v58.0/sobjects/AIApplicationConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qd","label":"AI + Insight Action","labelPlural":"AI Insight Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightAction/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightAction/describe","sobject":"/services/data/v58.0/sobjects/AIInsightAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9bq","label":"AI + Insight Feedback","labelPlural":"AI Insight Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightFeedback/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightFeedback/describe","sobject":"/services/data/v58.0/sobjects/AIInsightFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T2","label":"AI + Insight Reason","labelPlural":"AI Insight Reasons","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightReason","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightReason/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightReason/describe","sobject":"/services/data/v58.0/sobjects/AIInsightReason"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qc","label":"AI + Insight Value","labelPlural":"AI Insight Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightValue/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightValue/describe","sobject":"/services/data/v58.0/sobjects/AIInsightValue"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ae","label":"AI + Prediction Event","labelPlural":"AI Prediction Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIPredictionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIPredictionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AIPredictionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AIPredictionEvent/describe","sobject":"/services/data/v58.0/sobjects/AIPredictionEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qb","label":"AI + Record Insight","labelPlural":"AI Record Insights","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIRecordInsight","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIRecordInsight/{ID}","describe":"/services/data/v58.0/sobjects/AIRecordInsight/describe","sobject":"/services/data/v58.0/sobjects/AIRecordInsight"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Accepted + Event Relation","labelPlural":"Accepted Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AcceptedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AcceptedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/AcceptedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/AcceptedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"001","label":"Account","labelPlural":"Accounts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Account","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Account/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Account/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Account/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Account/listviews","describe":"/services/data/v58.0/sobjects/Account/describe","quickActions":"/services/data/v58.0/sobjects/Account/quickActions","layouts":"/services/data/v58.0/sobjects/Account/describe/layouts","sobject":"/services/data/v58.0/sobjects/Account"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Change Event","labelPlural":"Account Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CA","label":"Account + Clean Info","labelPlural":"Account Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/AccountCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/AccountCleanInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02Z","label":"Account + Contact Role","labelPlural":"Account Contact Roles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRole/{ID}","describe":"/services/data/v58.0/sobjects/AccountContactRole/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AccountContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Contact Role Change Event","labelPlural":"Account Contact Role Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Feed","labelPlural":"Account Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountFeed/{ID}","describe":"/services/data/v58.0/sobjects/AccountFeed/describe","sobject":"/services/data/v58.0/sobjects/AccountFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + History","labelPlural":"Account History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountHistory/{ID}","describe":"/services/data/v58.0/sobjects/AccountHistory/describe","sobject":"/services/data/v58.0/sobjects/AccountHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Account + Partner","labelPlural":"Account Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AccountPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AccountPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AccountPartner/{ID}","describe":"/services/data/v58.0/sobjects/AccountPartner/describe","layouts":"/services/data/v58.0/sobjects/AccountPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/AccountPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Account","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00r","label":"Account + Share","labelPlural":"Account Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountShare/{ID}","describe":"/services/data/v58.0/sobjects/AccountShare/describe","sobject":"/services/data/v58.0/sobjects/AccountShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07g","label":"Action + Link Group Template","labelPlural":"Action Link Group Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ActionLinkGroupTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07l","label":"Action + Link Template","labelPlural":"Action Link Templates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ActionLinkTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActionLinkTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H2","label":"Active + Feature License Metric","labelPlural":"Active Feature License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveFeatureLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H1","label":"Active + Permission Set License Metric","labelPlural":"Active Permission Set License + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivePermSetLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H0","label":"Active + Profile Metric","labelPlural":"Active Profile Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveProfileMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveProfileMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveProfileMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveProfileMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2fp","label":"Activity + Field History","labelPlural":"Activity Field Histories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityFieldHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Activity + History","labelPlural":"Activity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04m","label":"Additional + Directory Number","labelPlural":"Additional Directory Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AdditionalNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AdditionalNumber/{ID}","describe":"/services/data/v58.0/sobjects/AdditionalNumber/describe","sobject":"/services/data/v58.0/sobjects/AdditionalNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"130","label":"Address","labelPlural":"Addresses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Address","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Address/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Address/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Address/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Address/describe","layouts":"/services/data/v58.0/sobjects/Address/describe/layouts","sobject":"/services/data/v58.0/sobjects/Address"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Aggregate + Result","labelPlural":"Aggregate Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AggregateResult","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AggregateResult/{ID}","describe":"/services/data/v58.0/sobjects/AggregateResult/describe","sobject":"/services/data/v58.0/sobjects/AggregateResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Z7","label":"Alternative + Payment Method","labelPlural":"Alternative Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AlternativePaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/AlternativePaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethod"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AlternativePaymentMethod","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Alternative + Payment Method Share","labelPlural":"Alternative Payment Method Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AlternativePaymentMethodShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/describe","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bt","label":"Announcement","labelPlural":"Announcements","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Announcement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Announcement/{ID}","describe":"/services/data/v58.0/sobjects/Announcement/describe","sobject":"/services/data/v58.0/sobjects/Announcement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01p","label":"Apex + Class","labelPlural":"Apex Classes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApexClass","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApexClass/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApexClass/{ID}","describe":"/services/data/v58.0/sobjects/ApexClass/describe","layouts":"/services/data/v58.0/sobjects/ApexClass/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApexClass"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"099","label":"Visualforce + Component","labelPlural":"Visualforce Components","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexComponent/{ID}","describe":"/services/data/v58.0/sobjects/ApexComponent/describe","sobject":"/services/data/v58.0/sobjects/ApexComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06j","label":"Apex + Email Notification","labelPlural":"Apex Email Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexEmailNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexEmailNotification/{ID}","describe":"/services/data/v58.0/sobjects/ApexEmailNotification/describe","sobject":"/services/data/v58.0/sobjects/ApexEmailNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07L","label":"Apex + Debug Log","labelPlural":"Apex Debug Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexLog/{ID}","describe":"/services/data/v58.0/sobjects/ApexLog/describe","sobject":"/services/data/v58.0/sobjects/ApexLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"066","label":"Visualforce + Page","labelPlural":"Visualforce Pages","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexPage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPage/{ID}","describe":"/services/data/v58.0/sobjects/ApexPage/describe","sobject":"/services/data/v58.0/sobjects/ApexPage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ve","label":"Apex + Page Info","labelPlural":"Apex Pages Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexPageInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPageInfo/{ID}","describe":"/services/data/v58.0/sobjects/ApexPageInfo/describe","sobject":"/services/data/v58.0/sobjects/ApexPageInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"709","label":"Apex + Test Queue Item","labelPlural":"Apex Test Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestQueueItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestQueueItem/describe","sobject":"/services/data/v58.0/sobjects/ApexTestQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07M","label":"Apex + Test Result","labelPlural":"Apex Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05n","label":"Apex + Test Result Limit","labelPlural":"Apex Test Result Limit","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResultLimits","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResultLimits/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResultLimits/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResultLimits"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05m","label":"Apex + Test Run Result","labelPlural":"Apex Test Run Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestRunResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestRunResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestRunResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestRunResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05F","label":"Apex + Test Suite","labelPlural":"Apex Test Suites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestSuite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestSuite/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestSuite/describe","sobject":"/services/data/v58.0/sobjects/ApexTestSuite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01q","label":"Apex + Trigger","labelPlural":"Apex Triggers","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexTrigger","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTrigger/{ID}","describe":"/services/data/v58.0/sobjects/ApexTrigger/describe","sobject":"/services/data/v58.0/sobjects/ApexTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0kt","label":"Apex + Type Implementor","labelPlural":"Apex Type Implementors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTypeImplementor","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTypeImplementor/{ID}","describe":"/services/data/v58.0/sobjects/ApexTypeImplementor/describe","sobject":"/services/data/v58.0/sobjects/ApexTypeImplementor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j5","label":"API + Anomaly Event","labelPlural":"API Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ApiAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j6","label":"API + Anomaly Event Store","labelPlural":"API Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApiAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApiAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"API + Anomaly Event Store Feed","labelPlural":"API Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07t","label":"API + Event","labelPlural":"API Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEvent/{ID}","describe":"/services/data/v58.0/sobjects/ApiEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QI","label":"API + Event Stream","labelPlural":"API Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ApiEventStream/describe","sobject":"/services/data/v58.0/sobjects/ApiEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XI","label":"App + Analytics Query Request","labelPlural":"App Analytics Query Requests","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"AppAnalyticsQueryRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/{ID}","describe":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/describe","sobject":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06m","label":"App + Definition","labelPlural":"App Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AppDefinition/describe","sobject":"/services/data/v58.0/sobjects/AppDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mg","label":"App + Extension","labelPlural":"App Extensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppExtension/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppExtension/{ID}","describe":"/services/data/v58.0/sobjects/AppExtension/describe","layouts":"/services/data/v58.0/sobjects/AppExtension/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppExtension"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AppExtension","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"App + Extension Change Event","labelPlural":"App Extension Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppExtensionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AppExtensionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DS","label":"AppMenuItem","labelPlural":"AppMenuItems","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/AppMenuItem/describe","sobject":"/services/data/v58.0/sobjects/AppMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06o","label":"App + Tab Member","labelPlural":"App Tab Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppTabMember","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppTabMember/{ID}","describe":"/services/data/v58.0/sobjects/AppTabMember/describe","sobject":"/services/data/v58.0/sobjects/AppTabMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j8","label":"Application + Usage Assignment","labelPlural":"Application Usage Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppUsageAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppUsageAssignment/{ID}","describe":"/services/data/v58.0/sobjects/AppUsageAssignment/describe","layouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppUsageAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0mS","label":"Appointment + Topic Time Slot","labelPlural":"Appointment Topic Time Slots","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe","quickActions":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/quickActions","layouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Topic Time Slot History","labelPlural":"Appointment Topic Time Slot History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"52D","label":"Appointment + Bundle Aggregation Duration Downscale","labelPlural":"Appointment Bundle Aggregation + Duration Downscales","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrDurDnscale","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrDurDnscale","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Duration Downscale Feed","labelPlural":"Appointment Bundle + Aggregation Duration Downscale Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrDurDnscaleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7yi","label":"Appointment + Bundle Aggregation Policy","labelPlural":"Appointment Bundle Aggregation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Policy Feed","labelPlural":"Appointment Bundle Aggregation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Cv","label":"Appointment + Bundle Config","labelPlural":"Appointment Bundle Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleConfig","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfig/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleConfig/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleConfig/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleConfig"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Feed","labelPlural":"Appointment Bundle Config Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config History","labelPlural":"Appointment Bundle Config History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundleConfig","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Share","labelPlural":"Appointment Bundle Config Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sT","label":"Appointment + Bundle Policy","labelPlural":"Appointment Bundle Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Feed","labelPlural":"Appointment Bundle Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundlePolicy","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Share","labelPlural":"Appointment Bundle Policy Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7b0","label":"Appointment + Bundle Policy Service Territory","labelPlural":"Appointment Bundle Policy + Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicySvcTerr","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicySvcTerr","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Service Territory Feed","labelPlural":"Appointment Bundle Policy + Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicySvcTerrFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8XA","label":"Appointment + Bundle Propagation Policy","labelPlural":"Appointment Bundle Propagation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePropagatePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePropagatePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Propagation Policy Feed","labelPlural":"Appointment Bundle Propagation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePropagatePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6KP","label":"Appointment + Bundle Restriction Policy","labelPlural":"Appointment Bundle Restriction Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleRestrictPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleRestrictPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Restriction Policy Feed","labelPlural":"Appointment Bundle Restriction + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleRestrictPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lU","label":"Appointment + Bundle Sort Policy","labelPlural":"Appointment Bundle Sort Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleSortPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleSortPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Sort Policy Feed","labelPlural":"Appointment Bundle Sort Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleSortPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02i","label":"Asset","labelPlural":"Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Asset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Asset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Asset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Asset/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Asset/listviews","describe":"/services/data/v58.0/sobjects/Asset/describe","quickActions":"/services/data/v58.0/sobjects/Asset/quickActions","layouts":"/services/data/v58.0/sobjects/Asset/describe/layouts","sobject":"/services/data/v58.0/sobjects/Asset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nL","label":"Asset + Action","labelPlural":"Asset Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetAction/describe","layouts":"/services/data/v58.0/sobjects/AssetAction/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nM","label":"Asset + Action Source","labelPlural":"Asset Action Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetActionSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetActionSource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetActionSource/describe","layouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetActionSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0oV","label":"Asset + Attribute","labelPlural":"Asset Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetAttribute","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAttribute/{ID}","describe":"/services/data/v58.0/sobjects/AssetAttribute/describe","layouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAttribute"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetAttribute","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Attribute Change Event","labelPlural":"Asset Attribute Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetAttributeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Change Event","labelPlural":"Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gP","label":"Asset + Downtime Period","labelPlural":"Asset Downtime Periods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetDowntimePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriod/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe","quickActions":"/services/data/v58.0/sobjects/AssetDowntimePeriod/quickActions","layouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriod"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period Feed","labelPlural":"Asset Downtime Period Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period History","labelPlural":"Asset Downtime Period History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Feed","labelPlural":"Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + History","labelPlural":"Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1AR","label":"Asset + Relationship","labelPlural":"Asset Relationships","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetRelationship","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetRelationship/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetRelationship/describe","quickActions":"/services/data/v58.0/sobjects/AssetRelationship/quickActions","layouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetRelationship"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship Feed","labelPlural":"Asset Relationship Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship History","labelPlural":"Asset Relationship History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Asset","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"70a","label":"Asset + Share","labelPlural":"Asset Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetShare/{ID}","describe":"/services/data/v58.0/sobjects/AssetShare/describe","sobject":"/services/data/v58.0/sobjects/AssetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nK","label":"Asset + State Period","labelPlural":"Asset State Periods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetStatePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetStatePeriod/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetStatePeriod/describe","layouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetStatePeriod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Li","label":"Asset + Token Event","labelPlural":"Asset Token Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetTokenEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetTokenEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetTokenEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetTokenEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetTokenEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4xo","label":"Asset + Warranty","labelPlural":"Asset Warranties","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetWarranty","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetWarranty/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetWarranty/describe","quickActions":"/services/data/v58.0/sobjects/AssetWarranty/quickActions","layouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetWarranty"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Change Event","labelPlural":"Asset Warranty Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Feed","labelPlural":"Asset Warranty Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty History","labelPlural":"Asset Warranty History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03r","label":"Assigned + Resource","labelPlural":"Assigned Resources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssignedResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssignedResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssignedResource/describe","quickActions":"/services/data/v58.0/sobjects/AssignedResource/quickActions","layouts":"/services/data/v58.0/sobjects/AssignedResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssignedResource"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Change Event","labelPlural":"Assigned Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Feed","labelPlural":"Assigned Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssignedResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Q","label":"Assignment + Rule","labelPlural":"Assignment Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignmentRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignmentRule/{ID}","describe":"/services/data/v58.0/sobjects/AssignmentRule/describe","sobject":"/services/data/v58.0/sobjects/AssignmentRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kt","label":"Associated + Location","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated + Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex + Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async + Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async + Operation Log","labelPlural":"Async Operation Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AsyncOperationLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationLog/{ID}","describe":"/services/data/v58.0/sobjects/AsyncOperationLog/describe","layouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/AsyncOperationLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0YD","label":"Async + Operation Status","labelPlural":"Async Operation Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationStatus/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationStatus/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationStatus/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attached + Content Document","labelPlural":"Attached Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttachedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttachedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/AttachedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/AttachedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00P","label":"Attachment","labelPlural":"Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Attachment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Attachment/{ID}","describe":"/services/data/v58.0/sobjects/Attachment/describe","sobject":"/services/data/v58.0/sobjects/Attachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0tj","label":"Attribute + Definition","labelPlural":"Attribute Definitions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/AttributeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Feed","labelPlural":"Attribute Definition Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition History","labelPlural":"Attribute Definition History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Share","labelPlural":"Attribute Definition Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v5","label":"Attribute + Picklist","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute + Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning + Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura + Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle + Info","labelPlural":"AuraDefinitionBundle Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundleInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ad","label":"AuraDefinition + Info","labelPlural":"AuraDefinition Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07T","label":"Authentication + Configuration","labelPlural":"Authentication Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfig/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfig/describe","sobject":"/services/data/v58.0/sobjects/AuthConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07U","label":"Authentication + Configuration Auth. Provider","labelPlural":"Authentication Configuration + Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfigProviders","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfigProviders/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfigProviders/describe","sobject":"/services/data/v58.0/sobjects/AuthConfigProviders"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SO","label":"Auth. + Provider","labelPlural":"Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthProvider/{ID}","describe":"/services/data/v58.0/sobjects/AuthProvider/describe","sobject":"/services/data/v58.0/sobjects/AuthProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ak","label":"Auth + Session","labelPlural":"Auth Sessions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthSession","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthSession/{ID}","describe":"/services/data/v58.0/sobjects/AuthSession/describe","sobject":"/services/data/v58.0/sobjects/AuthSession"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cI","label":"Authorization + Form","labelPlural":"Authorization Forms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationForm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationForm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationForm/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationForm/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationForm"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cK","label":"Authorization + Form Consent","labelPlural":"Authorization Form Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormConsent/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Change Event","labelPlural":"Authorization Form Consent Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent History","labelPlural":"Authorization Form Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Share","labelPlural":"Authorization Form Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cM","label":"Authorization + Form Data Use","labelPlural":"Authorization Form Data Uses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormDataUse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUse"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormDataUse","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use History","labelPlural":"Authorization Form Data Use History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormDataUse","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use Share","labelPlural":"Authorization Form Data Use Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationForm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form History","labelPlural":"Authorization Form History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationForm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Share","labelPlural":"Authorization Form Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cN","label":"Authorization + Form Text","labelPlural":"Authorization Form Texts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormText/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormText/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormText/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormText"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text Feed","labelPlural":"Authorization Form Text Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text History","labelPlural":"Authorization Form Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08P","label":"Background + Operation","labelPlural":"Background Operations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"BackgroundOperation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BackgroundOperation/{ID}","describe":"/services/data/v58.0/sobjects/BackgroundOperation/describe","layouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/layouts","sobject":"/services/data/v58.0/sobjects/BackgroundOperation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QQ","label":"Batch + Apex Error Platform Event","labelPlural":"Batch Apex Error Platform Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BatchApexErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BatchApexErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BatchApexErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BatchApexErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/BatchApexErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"016","label":"Letterhead","labelPlural":"Letterheads","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandTemplate/{ID}","describe":"/services/data/v58.0/sobjects/BrandTemplate/describe","sobject":"/services/data/v58.0/sobjects/BrandTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lw","label":"Branding + Set","labelPlural":"Branding Sets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSet/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSet/describe","sobject":"/services/data/v58.0/sobjects/BrandingSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ly","label":"Branding + Set Property","labelPlural":"Branding Set Properties","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSetProperty","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSetProperty/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSetProperty/describe","sobject":"/services/data/v58.0/sobjects/BrandingSetProperty"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5LH","label":"Briefcase + Assignment","labelPlural":"Briefcase Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignment/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseAssignment/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseAssignment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Assignment Change Event","labelPlural":"Briefcase Assignment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rY","label":"Briefcase + Definition","labelPlural":"Briefcase Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinition/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseDefinition/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinition"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Definition Change Event","labelPlural":"Briefcase Definition Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinitionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rX","label":"Briefcase + Rule","labelPlural":"Briefcase Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRule/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRule/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rZ","label":"Briefcase + Rule Filter","labelPlural":"Briefcase Rule Filters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRuleFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRuleFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hx","label":"Bulk + API Result Event","labelPlural":"Bulk API Result Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BulkApiResultEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BulkApiResultEvent/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hJ","label":"Bulk + API Result Event Store","labelPlural":"Bulk API Result Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEventStore/{ID}","describe":"/services/data/v58.0/sobjects/BulkApiResultEventStore/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1BU","label":"Business + Brand","labelPlural":"Business Brands","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessBrand","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessBrand/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/BusinessBrand/describe","layouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessBrand"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"BusinessBrand","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Business + Brand Share","labelPlural":"Business Brand Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessBrandShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessBrandShare/{ID}","describe":"/services/data/v58.0/sobjects/BusinessBrandShare/describe","sobject":"/services/data/v58.0/sobjects/BusinessBrandShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01m","label":"Business + Hours","labelPlural":"Business Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessHours/{ID}","describe":"/services/data/v58.0/sobjects/BusinessHours/describe","layouts":"/services/data/v58.0/sobjects/BusinessHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessHours"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"019","label":"Business + Process","labelPlural":"Business Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessProcess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessProcess/{ID}","describe":"/services/data/v58.0/sobjects/BusinessProcess/describe","sobject":"/services/data/v58.0/sobjects/BusinessProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"023","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Calendar","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Calendar/{ID}","describe":"/services/data/v58.0/sobjects/Calendar/describe","sobject":"/services/data/v58.0/sobjects/Calendar"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03A","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarView","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarView/{ID}","describe":"/services/data/v58.0/sobjects/CalendarView/describe","sobject":"/services/data/v58.0/sobjects/CalendarView"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CalendarView","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Calendar + Share","labelPlural":"Calendar Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarViewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarViewShare/{ID}","describe":"/services/data/v58.0/sobjects/CalendarViewShare/describe","sobject":"/services/data/v58.0/sobjects/CalendarViewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04v","label":"Call + Center","labelPlural":"Call Centers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCenter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCenter/{ID}","describe":"/services/data/v58.0/sobjects/CallCenter/describe","sobject":"/services/data/v58.0/sobjects/CallCenter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hn","label":"CallCoachingMediaProvider","labelPlural":"CallCoachingMediaProviders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCoachingMediaProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/{ID}","describe":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/describe","sobject":"/services/data/v58.0/sobjects/CallCoachingMediaProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"701","label":"Campaign","labelPlural":"Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Campaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Campaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Campaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Campaign/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Campaign/listviews","describe":"/services/data/v58.0/sobjects/Campaign/describe","quickActions":"/services/data/v58.0/sobjects/Campaign/quickActions","layouts":"/services/data/v58.0/sobjects/Campaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/Campaign"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Change Event","labelPlural":"Campaign Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Feed","labelPlural":"Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/CampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/CampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Field History","labelPlural":"Campaign Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/CampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/CampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03V","label":"Campaign + Influence Model","labelPlural":"Campaign Influence Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignInfluenceModel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignInfluenceModel/{ID}","describe":"/services/data/v58.0/sobjects/CampaignInfluenceModel/describe","sobject":"/services/data/v58.0/sobjects/CampaignInfluenceModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00v","label":"Campaign + Member","labelPlural":"Campaign Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMember/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMember/describe","layouts":"/services/data/v58.0/sobjects/CampaignMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Change Event","labelPlural":"Campaign Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Y","label":"Campaign + Member Status","labelPlural":"Campaign Member Statuses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatus","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatus/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe","layouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMemberStatus","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Status Change Event","labelPlural":"Campaign Member Status Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatusChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Campaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08s","label":"Campaign + Share","labelPlural":"Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/CampaignShare/describe","sobject":"/services/data/v58.0/sobjects/CampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03O","label":"Card + Payment Method","labelPlural":"Card Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CardPaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CardPaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/CardPaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/CardPaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/CardPaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"500","label":"Case","labelPlural":"Cases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Case","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Case/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Case/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Case/describe/approvalLayouts","caseArticleSuggestions":"/services/data/v58.0/sobjects/Case/suggestedArticles","caseRowArticleSuggestions":"/services/data/v58.0/sobjects/Case/{ID}/suggestedArticles","listviews":"/services/data/v58.0/sobjects/Case/listviews","describe":"/services/data/v58.0/sobjects/Case/describe","quickActions":"/services/data/v58.0/sobjects/Case/quickActions","layouts":"/services/data/v58.0/sobjects/Case/describe/layouts","sobject":"/services/data/v58.0/sobjects/Case"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Change Event","labelPlural":"Case Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CaseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CaseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CaseChangeEvent"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Case + Comment","labelPlural":"Case Comments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseComment/{ID}","describe":"/services/data/v58.0/sobjects/CaseComment/describe","layouts":"/services/data/v58.0/sobjects/CaseComment/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03j","label":"Case + Contact Role","labelPlural":"Case Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseContactRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseContactRole/describe","layouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Feed","labelPlural":"Case Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseFeed/{ID}","describe":"/services/data/v58.0/sobjects/CaseFeed/describe","sobject":"/services/data/v58.0/sobjects/CaseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + History","labelPlural":"Case History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseHistory/{ID}","describe":"/services/data/v58.0/sobjects/CaseHistory/describe","sobject":"/services/data/v58.0/sobjects/CaseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"555","label":"Case + Milestone","labelPlural":"Case Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseMilestone","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseMilestone/{ID}","describe":"/services/data/v58.0/sobjects/CaseMilestone/describe","layouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseMilestone"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01n","label":"Case + Share","labelPlural":"Case Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseShare/{ID}","describe":"/services/data/v58.0/sobjects/CaseShare/describe","sobject":"/services/data/v58.0/sobjects/CaseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"010","label":"Case + Solution","labelPlural":"Case Solution","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseSolution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseSolution/{ID}","describe":"/services/data/v58.0/sobjects/CaseSolution/describe","sobject":"/services/data/v58.0/sobjects/CaseSolution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Status Value","labelPlural":"Case Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseStatus/{ID}","describe":"/services/data/v58.0/sobjects/CaseStatus/describe","sobject":"/services/data/v58.0/sobjects/CaseStatus"}},{"activateable":false,"associateEntityType":"TeamMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member","labelPlural":"Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamMember"}},{"activateable":false,"associateEntityType":"TeamRole","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member Role","labelPlural":"Case Team Member Role","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamRole/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamRole"}},{"activateable":false,"associateEntityType":"TeamTemplate","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team","labelPlural":"Predefined Case Team","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplate/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplate/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplate"}},{"activateable":false,"associateEntityType":"TeamTemplateMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Member","labelPlural":"Predefined Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateMember"}},{"activateable":false,"associateEntityType":"TeamTemplateRecord","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Record","labelPlural":"Predefined Case Team Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02o","label":"Category + Data","labelPlural":"Category Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryData/{ID}","describe":"/services/data/v58.0/sobjects/CategoryData/describe","sobject":"/services/data/v58.0/sobjects/CategoryData"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02n","label":"Category + Node","labelPlural":"Category Nodes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryNode/{ID}","describe":"/services/data/v58.0/sobjects/CategoryNode/describe","sobject":"/services/data/v58.0/sobjects/CategoryNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ca","label":"Chatter + Activity","labelPlural":"Chatter Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterActivity/{ID}","describe":"/services/data/v58.0/sobjects/ChatterActivity/describe","sobject":"/services/data/v58.0/sobjects/ChatterActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MY","label":"Extension","labelPlural":"Extensions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtension/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtension/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtension"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ob","label":"Chatter + Extension Configuration","labelPlural":"Chatter Extension Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtensionConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtensionConfig/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtensionConfig/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtensionConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"713","label":"Client + Browser","labelPlural":"Client Browser","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ClientBrowser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ClientBrowser/{ID}","describe":"/services/data/v58.0/sobjects/ClientBrowser/describe","sobject":"/services/data/v58.0/sobjects/ClientBrowser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0F9","label":"Group","labelPlural":"Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroup/{ID}","listviews":"/services/data/v58.0/sobjects/CollaborationGroup/listviews","describe":"/services/data/v58.0/sobjects/CollaborationGroup/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CollaborationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Group + Feed","labelPlural":"Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FB","label":"Group + Member","labelPlural":"Group Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMember/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I5","label":"Group + Member Request","labelPlural":"Group Member Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMemberRequest","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Aa","label":"Group + Record","labelPlural":"Group Records","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupRecord/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H1","label":"Chatter + Invitation","labelPlural":"Chatter Invitations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationInvitation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationInvitation/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationInvitation/describe","sobject":"/services/data/v58.0/sobjects/CollaborationInvitation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9CR","label":"Collaboration + Room","labelPlural":"Collaboration Rooms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationRoom","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationRoom/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationRoom/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationRoom/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationRoom"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05k","label":"Color + Definition","labelPlural":"Color Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ColorDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ColorDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ColorDefinition/describe","sobject":"/services/data/v58.0/sobjects/ColorDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note, + Attachment, Google Doc And File","labelPlural":"Notes, Attachments, Google + Docs And Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CombinedAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CombinedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/CombinedAttachment/describe","sobject":"/services/data/v58.0/sobjects/CombinedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xl","label":"Communication + Subscription","labelPlural":"Communication Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscription/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscription/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscription/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscription/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eB","label":"Communication + Subscription Channel Type","labelPlural":"Communication Subscription Channel + Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Feed","labelPlural":"Communication Subscription + Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type History","labelPlural":"Communication Subscription + Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Share","labelPlural":"Communication Subscription + Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dY","label":"Communication + Subscription Consent","labelPlural":"Communication Subscription Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionConsent/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Change Event","labelPlural":"Communication Subscription + Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Feed","labelPlural":"Communication Subscription Consent + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent History","labelPlural":"Communication Subscription Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Share","labelPlural":"Communication Subscription Consent + Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Feed","labelPlural":"Communication Subscription Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription History","labelPlural":"Communication Subscription History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscription","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Share","labelPlural":"Communication Subscription Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0al","label":"Communication + Subscription Timing","labelPlural":"Communication Subscription Timings","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionTiming","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTiming/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionTiming/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTiming"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing Feed","labelPlural":"Communication Subscription Timing + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing History","labelPlural":"Communication Subscription Timing History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09a","label":"Zone","labelPlural":"Zones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Community","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Community/{ID}","describe":"/services/data/v58.0/sobjects/Community/describe","sobject":"/services/data/v58.0/sobjects/Community"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QR","label":"Concurrent + Long Running Apex Error Event","labelPlural":"Concurrent Long Running Apex + Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConcurLongRunApexErrEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/describe","sobject":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ah","label":"Conference + Number","labelPlural":"Conference Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConferenceNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConferenceNumber/{ID}","describe":"/services/data/v58.0/sobjects/ConferenceNumber/describe","sobject":"/services/data/v58.0/sobjects/ConferenceNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H4","label":"Connected + App","labelPlural":"Connected Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConnectedApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConnectedApplication/{ID}","describe":"/services/data/v58.0/sobjects/ConnectedApplication/describe","sobject":"/services/data/v58.0/sobjects/ConnectedApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mo","label":"Consumption + Rate","labelPlural":"Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionRate/describe","layouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionRate"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionRate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Rate History ID","labelPlural":"Consumption Rate History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionRateHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionRateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mh","label":"Consumption + Schedule","labelPlural":"Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionSchedule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe","quickActions":"/services/data/v58.0/sobjects/ConsumptionSchedule/quickActions","layouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionSchedule"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ConsumptionSchedule","labelPlural":"ConsumptionSchedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule History ID","labelPlural":"Consumption Schedule History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ConsumptionSchedule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule Share","labelPlural":"Consumption Schedule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"003","label":"Contact","labelPlural":"Contacts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Contact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contact/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contact/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contact/listviews","describe":"/services/data/v58.0/sobjects/Contact/describe","quickActions":"/services/data/v58.0/sobjects/Contact/quickActions","layouts":"/services/data/v58.0/sobjects/Contact/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contact"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Change Event","labelPlural":"Contact Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CC","label":"Contact + Clean Info","labelPlural":"Contact Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/ContactCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/ContactCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Feed","labelPlural":"Contact Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContactFeed/describe","sobject":"/services/data/v58.0/sobjects/ContactFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + History","labelPlural":"Contact History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8lW","label":"Contact + Point Address","labelPlural":"Contact Point Addresses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddress/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointAddress/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointAddress/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointAddress"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Change Event","labelPlural":"Contact Point Address Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address History","labelPlural":"Contact Point Address History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointAddress","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Share","labelPlural":"Contact Point Address Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZX","label":"Contact + Point Consent","labelPlural":"Contact Point Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Change Event","labelPlural":"Contact Point Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent History","labelPlural":"Contact Point Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Share","labelPlural":"Contact Point Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Vl","label":"Contact + Point Email","labelPlural":"Contact Point Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmail/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointEmail/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointEmail/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Change Event","labelPlural":"Contact Point Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email History","labelPlural":"Contact Point Email History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Share","labelPlural":"Contact Point Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ow","label":"Contact + Point Phone","labelPlural":"Contact Point Phones","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointPhone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointPhone/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointPhone/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointPhone"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Change Event","labelPlural":"Contact Point Phone Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone History","labelPlural":"Contact Point Phone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointPhone","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Share","labelPlural":"Contact Point Phone Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZY","label":"Contact + Point Type Consent","labelPlural":"Contact Point Type Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointTypeConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Change Event","labelPlural":"Contact Point Type Consent + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent History","labelPlural":"Contact Point Type Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointTypeConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Share","labelPlural":"Contact Point Type Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tz","label":"Contact + Request","labelPlural":"Contact Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactRequest/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequest/describe","layouts":"/services/data/v58.0/sobjects/ContactRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Request Share","labelPlural":"Contact Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ContactRequestShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03s","label":"Contact + Share","labelPlural":"Contact Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactShare/describe","sobject":"/services/data/v58.0/sobjects/ContactShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03S","label":"Asset + File","labelPlural":"Asset Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentAsset/{ID}","describe":"/services/data/v58.0/sobjects/ContentAsset/describe","sobject":"/services/data/v58.0/sobjects/ContentAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05T","label":"Content + Body","labelPlural":"Content Bodies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentBody","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentBody/{ID}","describe":"/services/data/v58.0/sobjects/ContentBody/describe","sobject":"/services/data/v58.0/sobjects/ContentBody"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05D","label":"Content + Delivery","labelPlural":"Content Deliveries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistribution","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistribution/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistribution/describe","sobject":"/services/data/v58.0/sobjects/ContentDistribution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05H","label":"Content + Delivery View","labelPlural":"Content Delivery Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistributionView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistributionView/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistributionView/describe","sobject":"/services/data/v58.0/sobjects/ContentDistributionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"069","label":"Content + Document","labelPlural":"Content Documents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContentDocument","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocument/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocument/describe","layouts":"/services/data/v58.0/sobjects/ContentDocument/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocument"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Change Event","labelPlural":"Content Document Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ContentDocument + Feed","labelPlural":"ContentDocument Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentFeed/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document History","labelPlural":"Content Document History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06A","label":"Content + Document Link","labelPlural":"Content Document Link","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentLink/describe","layouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocumentLink"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocumentLink","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Link Change Event","labelPlural":"Content Document Link Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLinkChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"057","label":"Content + Document Subscription","labelPlural":"Content Document Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07H","label":"Content + Folder","labelPlural":"Content Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolder/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolder/describe","sobject":"/services/data/v58.0/sobjects/ContentFolder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Folder Item","labelPlural":"Content Folder Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentFolderItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentFolderItem/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderItem/describe","layouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentFolderItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07v","label":"Content + Folder Link","labelPlural":"Content Folder Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderLink/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07I","label":"Content + Folder Member","labelPlural":"Content Folder Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderMember/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05V","label":"Content + Notification","labelPlural":"Content Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentNotification/{ID}","describe":"/services/data/v58.0/sobjects/ContentNotification/describe","sobject":"/services/data/v58.0/sobjects/ContentNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05Q","label":"Content + Tag Subscription","labelPlural":"Content Tag Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentTagSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentTagSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentTagSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentTagSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05S","label":"Content + User Subscription","labelPlural":"Content User Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentUserSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentUserSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentUserSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentUserSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"068","label":"Content + Version","labelPlural":"Content Versions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentVersion/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentVersion/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersion/describe","layouts":"/services/data/v58.0/sobjects/ContentVersion/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentVersion"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version Change Event","labelPlural":"Content Version Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05C","label":"Content + Version Comment","labelPlural":"Content Version Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionComment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionComment/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionComment/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionComment"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version History","labelPlural":"Content Version History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05J","label":"Content + Version Rating","labelPlural":"Content Version Ratings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionRating","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionRating/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionRating/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionRating"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"058","label":"Library","labelPlural":"Libraries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspace","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspace/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspace/describe","layouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentWorkspace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"059","label":"Library + Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library + Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library + Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract + Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + History","labelPlural":"Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"811","label":"Contract + Line Item","labelPlural":"Contract Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineItem/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Change Event","labelPlural":"Contract Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Feed","labelPlural":"Contract Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item History","labelPlural":"Contract Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3lp","label":"Contract + Line Outcome","labelPlural":"Contract Line Outcomes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcome","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcome/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcome/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineOutcome/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcome"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sD","label":"Contract + Line Outcome Data","labelPlural":"Contract Line Outcome Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcomeData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeData/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe","layouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineOutcomeData","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Data Change Event","labelPlural":"Contract Line Outcome Data + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeDataChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential + Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential + Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential + Stuffing Event Store Feed","labelPlural":"Credential Stuffing Event Store + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"50g","label":"Credit + Memo","labelPlural":"Credit Memos","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CreditMemo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemo/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemo/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemo/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemo/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Feed","labelPlural":"Credit Memo Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo History","labelPlural":"Credit Memo History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4sF","label":"Credit + Memo Invoice Application","labelPlural":"Credit Memo Invoice Applications","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplication","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplication/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoInvApplication/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplication"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Invoice Application History","labelPlural":"Credit Memo Invoice Application History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9yx","label":"Credit + Memo Line","labelPlural":"Credit Memo Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoLine/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoLine/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line Feed","labelPlural":"Credit Memo Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line History","labelPlural":"Credit Memo Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CreditMemo","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Share","labelPlural":"Credit Memo Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoShare/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoShare/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08a","label":"Cron + Job","labelPlural":"Cron Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronJobDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronJobDetail/{ID}","describe":"/services/data/v58.0/sobjects/CronJobDetail/describe","sobject":"/services/data/v58.0/sobjects/CronJobDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08e","label":"Scheduled + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom + Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom + Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom + Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom + Help Menu Section","labelPlural":"Custom Help Menu Sections","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuSection","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuSection/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuSection/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuSection"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XH","label":"Custom + HTTP Header","labelPlural":"Custom HTTP Headers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomHttpHeader","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomHttpHeader/{ID}","describe":"/services/data/v58.0/sobjects/CustomHttpHeader/describe","layouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomHttpHeader"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ML","label":"Custom + Notification Type","labelPlural":"Custom Notification Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomNotificationType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomNotificationType/{ID}","describe":"/services/data/v58.0/sobjects/CustomNotificationType/describe","sobject":"/services/data/v58.0/sobjects/CustomNotificationType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3NA","label":"Custom + Object Usage By User License Metric","labelPlural":"Custom Object Usage By + User License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomObjectUserLicenseMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/{ID}","describe":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/describe","sobject":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CP","label":"Custom + Permission","labelPlural":"Custom Permissions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermission/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermission/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermission/describe","layouts":"/services/data/v58.0/sobjects/CustomPermission/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PD","label":"Custom + Permission Dependency","labelPlural":"Custom Permission Dependencies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermissionDependency","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermissionDependency/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe","layouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermissionDependency"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0o6","label":"Customer","labelPlural":"Customers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Customer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Customer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Customer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Customer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Customer/describe","layouts":"/services/data/v58.0/sobjects/Customer/describe/layouts","sobject":"/services/data/v58.0/sobjects/Customer"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Customer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Customer + Share","labelPlural":"Customer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomerShare/{ID}","describe":"/services/data/v58.0/sobjects/CustomerShare/describe","sobject":"/services/data/v58.0/sobjects/CustomerShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06E","label":"D&B + Company","labelPlural":"D&B Companies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DandBCompany","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Z","label":"Dashboard","labelPlural":"Dashboards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Dashboard","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Dashboard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Dashboard/{ID}","listviews":"/services/data/v58.0/sobjects/Dashboard/listviews","describe":"/services/data/v58.0/sobjects/Dashboard/describe","layouts":"/services/data/v58.0/sobjects/Dashboard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Dashboard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01a","label":"Dashboard + Component","labelPlural":"Dashboard Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponent/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponent/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"DashboardComponent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Component Feed","labelPlural":"Dashboard Component Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponentFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponentFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponentFeed"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Dashboard","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Feed","labelPlural":"Dashboard Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03Q","label":"Data + Assessment Field Metric","labelPlural":"Data Assessment Field Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentFieldMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03P","label":"Data + Assessment Metric","labelPlural":"Data Assessment Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03R","label":"Data + Assessment Field Value Metric","labelPlural":"Data Assessment Field Value + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentValueMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentValueMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1e5","label":"Data + Object Data Change Event","labelPlural":"Data Object Data Change Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataObjectDataChgEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/describe","sobject":"/services/data/v58.0/sobjects/DataObjectDataChgEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05a","label":"Data + Statistics","labelPlural":"Data Statistics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataStatistics","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataStatistics/{ID}","describe":"/services/data/v58.0/sobjects/DataStatistics/describe","sobject":"/services/data/v58.0/sobjects/DataStatistics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4dt","label":"Data + Type","labelPlural":"Data Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataType/{ID}","describe":"/services/data/v58.0/sobjects/DataType/describe","sobject":"/services/data/v58.0/sobjects/DataType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZT","label":"Data + Use Legal Basis","labelPlural":"Data Use Legal Bases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUseLegalBasis","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasis/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe","layouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasis"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUseLegalBasis","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis History","labelPlural":"Data Use Legal Basis History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUseLegalBasis","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis Share","labelPlural":"Data Use Legal Basis Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZW","label":"Data + Use Purpose","labelPlural":"Data Use Purposes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUsePurpose","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUsePurpose/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUsePurpose/describe","quickActions":"/services/data/v58.0/sobjects/DataUsePurpose/quickActions","layouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUsePurpose"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUsePurpose","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose History","labelPlural":"Data Use Purpose History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUsePurpose","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose Share","labelPlural":"Data Use Purpose Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeShare/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07m","label":"Data.com + Address","labelPlural":"Data.com Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudAddress","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudAddress/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudAddress/describe","sobject":"/services/data/v58.0/sobjects/DatacloudAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09K","label":"Data.com + Company","labelPlural":"Data.com Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08C","label":"Data.com + Contact","labelPlural":"Data.com Contacts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudContact","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudContact/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudContact/describe","sobject":"/services/data/v58.0/sobjects/DatacloudContact"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09N","label":"D&B + Company","labelPlural":"DandB Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudDandBCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudDandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudDandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09O","label":"Data.com + Owned Entity","labelPlural":"Data.com Owned Entity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudOwnedEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/describe","sobject":"/services/data/v58.0/sobjects/DatacloudOwnedEntity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09F","label":"Data.com + Usage","labelPlural":"Data.com Usage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudPurchaseUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/describe","sobject":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Declined + Event Relation","labelPlural":"Declined Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeclinedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeclinedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/DeclinedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/DeclinedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00C","label":"Recycle + Bin Item","labelPlural":"Recycle Bin","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeleteEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeleteEvent/{ID}","describe":"/services/data/v58.0/sobjects/DeleteEvent/describe","sobject":"/services/data/v58.0/sobjects/DeleteEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DS","label":"Digital + Signature","labelPlural":"Digital Signatures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignature","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignature/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DigitalSignature/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DigitalSignature/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignature"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"DigitalSignature","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Digital + Signature Change Event","labelPlural":"Digital Signature Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignatureChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DW","label":"Digital + Wallet","labelPlural":"Digital Wallets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DigitalWallet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DigitalWallet/{ID}","describe":"/services/data/v58.0/sobjects/DigitalWallet/describe","quickActions":"/services/data/v58.0/sobjects/DigitalWallet/quickActions","layouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DigitalWallet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"015","label":"Document","labelPlural":"Documents","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Document","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Document/{ID}","describe":"/services/data/v58.0/sobjects/Document/describe","sobject":"/services/data/v58.0/sobjects/Document"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05X","label":"Document + Entity Map","labelPlural":"Document Entity Map","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DocumentAttachmentMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DocumentAttachmentMap/{ID}","describe":"/services/data/v58.0/sobjects/DocumentAttachmentMap/describe","sobject":"/services/data/v58.0/sobjects/DocumentAttachmentMap"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I4","label":"Domain","labelPlural":"Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Domain","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Domain/{ID}","describe":"/services/data/v58.0/sobjects/Domain/describe","sobject":"/services/data/v58.0/sobjects/Domain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jf","label":"Custom + URL","labelPlural":"Custom URLs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DomainSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DomainSite/{ID}","describe":"/services/data/v58.0/sobjects/DomainSite/describe","sobject":"/services/data/v58.0/sobjects/DomainSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GL","label":"Duplicate + Record Item","labelPlural":"Duplicate Record Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DuplicateRecordItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GK","label":"Duplicate + Record Set","labelPlural":"Duplicate Record Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRecordSet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordSet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bm","label":"Duplicate + Rule","labelPlural":"Duplicate Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRule/{ID}","describe":"/services/data/v58.0/sobjects/DuplicateRule/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06F","label":"EmailCapture","labelPlural":"Email + Captures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailCapture","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailCapture/{ID}","describe":"/services/data/v58.0/sobjects/EmailCapture/describe","sobject":"/services/data/v58.0/sobjects/EmailCapture"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T6","label":"Email + Domain Filter","labelPlural":"Email Domain Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainFilter/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainFilter/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09P","label":"Email + Domain Key","labelPlural":"Email Domain Keys","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainKey","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainKey/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainKey/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainKey"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02s","label":"Email + Message","labelPlural":"Email Messages","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EmailMessage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailMessage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EmailMessage/describe","quickActions":"/services/data/v58.0/sobjects/EmailMessage/quickActions","layouts":"/services/data/v58.0/sobjects/EmailMessage/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailMessage"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailMessage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Message Change Event","labelPlural":"Email Message Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CZ","label":"Email + Message Relation","labelPlural":"Email Message Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageRelation/{ID}","describe":"/services/data/v58.0/sobjects/EmailMessageRelation/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"26Z","label":"Email + Relay","labelPlural":"Email Relay","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailRelay","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailRelay/{ID}","describe":"/services/data/v58.0/sobjects/EmailRelay/describe","sobject":"/services/data/v58.0/sobjects/EmailRelay"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"093","label":"Email + Services Address","labelPlural":"Email Services Address","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesAddress/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesAddress/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"091","label":"Email + Service","labelPlural":"Email Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesFunction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesFunction/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesFunction/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"018","label":"Email + Status","labelPlural":"Email Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailStatus/{ID}","describe":"/services/data/v58.0/sobjects/EmailStatus/describe","sobject":"/services/data/v58.0/sobjects/EmailStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00X","label":"Email + Template","labelPlural":"Email Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EmailTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EmailTemplate/describe","layouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Template Change Event","labelPlural":"Email Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lq","label":"Embedded + Service","labelPlural":"Embedded Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uu","label":"Embedded + Service Label","labelPlural":"Embedded Service Labels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceLabel","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceLabel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eF","label":"Engagement + Channel Type","labelPlural":"Engagement Channel Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EngagementChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EngagementChannelType/describe","quickActions":"/services/data/v58.0/sobjects/EngagementChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/EngagementChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Feed","labelPlural":"Engagement Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type History","labelPlural":"Engagement Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"EngagementChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Share","labelPlural":"Engagement Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rn","label":"Enhanced + Letterhead","labelPlural":"Enhanced Letterheads","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EnhancedLetterhead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterhead/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe","layouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/layouts","sobject":"/services/data/v58.0/sobjects/EnhancedLetterhead"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EnhancedLetterhead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Enhanced + Letterhead Feed","labelPlural":"Enhanced Letterhead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EnhancedLetterheadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/describe","sobject":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"550","label":"Entitlement","labelPlural":"Entitlements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Entitlement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Entitlement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Entitlement/describe","layouts":"/services/data/v58.0/sobjects/Entitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/Entitlement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Change Event","labelPlural":"Entitlement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EntitlementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EntitlementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EntitlementChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E7","label":"Entitlement + Contact","labelPlural":"Entitlement Contacts","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntitlementContact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntitlementContact/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementContact/describe","layouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntitlementContact"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Feed","labelPlural":"Entitlement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementFeed/describe","sobject":"/services/data/v58.0/sobjects/EntitlementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + History","labelPlural":"Entitlement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementHistory/describe","sobject":"/services/data/v58.0/sobjects/EntitlementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"551","label":"Entitlement + Template","labelPlural":"Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/EntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ie","label":"Entity + Definition","labelPlural":"Entity Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityDefinition/{ID}","describe":"/services/data/v58.0/sobjects/EntityDefinition/describe","sobject":"/services/data/v58.0/sobjects/EntityDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1EM","label":"Object + Milestone","labelPlural":"Object Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntityMilestone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntityMilestone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EntityMilestone/describe","quickActions":"/services/data/v58.0/sobjects/EntityMilestone/quickActions","layouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntityMilestone"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone Feed","labelPlural":"Object Milestone Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneFeed/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone History","labelPlural":"Object Milestone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneHistory/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nv","label":"Entity + Particle","labelPlural":"Entity Particles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityParticle","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityParticle/{ID}","describe":"/services/data/v58.0/sobjects/EntityParticle/describe","sobject":"/services/data/v58.0/sobjects/EntityParticle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E8","label":"Entity + Subscription","labelPlural":"Entity Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitySubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitySubscription/{ID}","describe":"/services/data/v58.0/sobjects/EntitySubscription/describe","sobject":"/services/data/v58.0/sobjects/EntitySubscription"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Error_Log__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Log","labelPlural":"Change Event: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Error_Log__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Error Log","labelPlural":"Share: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__Share/{ID}","describe":"/services/data/v58.0/sobjects/Error_Log__Share/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1M","label":"Error + Log","labelPlural":"Connection Error Log","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Error_Log__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Error_Log__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Error_Log__c/describe","quickActions":"/services/data/v58.0/sobjects/Error_Log__c/quickActions","layouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Error_Log__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00U","label":"Event","labelPlural":"Events","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Event","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Event/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Event/{ID}","eventSeriesUpdates":"/services/data/v58.0/sobjects/Event/{ID}/fromThisEventOnwards","describe":"/services/data/v58.0/sobjects/Event/describe","quickActions":"/services/data/v58.0/sobjects/Event/quickActions","layouts":"/services/data/v58.0/sobjects/Event/describe/layouts","sobject":"/services/data/v58.0/sobjects/Event"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cd","label":"Platform + Event Subscription","labelPlural":"Platform Event Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventBusSubscriber","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventBusSubscriber/{ID}","describe":"/services/data/v58.0/sobjects/EventBusSubscriber/describe","sobject":"/services/data/v58.0/sobjects/EventBusSubscriber"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Change Event","labelPlural":"Event Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Feed","labelPlural":"Event Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventFeed/{ID}","describe":"/services/data/v58.0/sobjects/EventFeed/describe","sobject":"/services/data/v58.0/sobjects/EventFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AT","label":"Event + Log File","labelPlural":"Event Log Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventLogFile","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventLogFile/{ID}","describe":"/services/data/v58.0/sobjects/EventLogFile/describe","sobject":"/services/data/v58.0/sobjects/EventLogFile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0RE","label":"Event + Relation","labelPlural":"Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelation/{ID}","describe":"/services/data/v58.0/sobjects/EventRelation/describe","sobject":"/services/data/v58.0/sobjects/EventRelation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relation Change Event","labelPlural":"Event Relation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k2","label":"Event + Relay Config","labelPlural":"Event Relay Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfig/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayConfig/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfig"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelayConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relay Config Change Event","labelPlural":"Event Relay Config Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfigChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k4","label":"Event + Relay Feedback","labelPlural":"Event Relay Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayFeedback/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayFeedback/describe","sobject":"/services/data/v58.0/sobjects/EventRelayFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1V4","label":"Expense","labelPlural":"Expenses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Expense","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Expense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Expense/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Expense/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Expense/describe","quickActions":"/services/data/v58.0/sobjects/Expense/quickActions","layouts":"/services/data/v58.0/sobjects/Expense/describe/layouts","sobject":"/services/data/v58.0/sobjects/Expense"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Change Event","labelPlural":"Expense Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ExpenseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ExpenseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ExpenseChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Feed","labelPlural":"Expense Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + History","labelPlural":"Expense History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6g5","label":"Expense + Report","labelPlural":"Expense Reports","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReport/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExpenseReport/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReport/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReport"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3zl","label":"Expense + Report Entry","labelPlural":"Expense Report Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReportEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntry/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReportEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntry"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry Feed","labelPlural":"Expense Report Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry History","labelPlural":"Expense Report Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Feed","labelPlural":"Expense Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report History","labelPlural":"Expense Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExpenseReport","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Share","labelPlural":"Expense Report Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Expense","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Share","labelPlural":"Expense Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1GS","label":"ExpressionFilter","labelPlural":"ExpressionFilters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilter/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilter/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8BM","label":"ExpressionFilterCriteria","labelPlural":"ExpressionFilterCriteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilterCriteria"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pz","label":"Expression + Set View","labelPlural":"Expression Set Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionSetView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionSetView/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionSetView/describe","sobject":"/services/data/v58.0/sobjects/ExpressionSetView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XC","label":"External + Data Source","labelPlural":"External Data Sources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ExternalDataSource","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSource/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSource/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6Ay","label":"External + Data Source Descriptor","labelPlural":"External Data Source Descriptors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataSrcDescriptor","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XU","label":"External + Data User Authentication","labelPlural":"External Data User Authentications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataUserAuth","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataUserAuth/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataUserAuth/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataUserAuth"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AY","label":"External + Event","labelPlural":"External Events","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ExternalEvent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExternalEvent/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEvent/describe","layouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExternalEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08N","label":"External + Event Mapping","labelPlural":"External Event Mappings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMapping","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMapping/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExternalEventMapping/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExternalEventMapping/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMapping"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExternalEventMapping","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"External + Event Mapping Share","labelPlural":"External Event Mapping Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMappingShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMappingShare/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEventMappingShare/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMappingShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08M","label":"Feed + Attachment","labelPlural":"Feed Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedAttachment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/FeedAttachment/describe","sobject":"/services/data/v58.0/sobjects/FeedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D7","label":"Feed + Comment","labelPlural":"Feed Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedComment/{ID}","describe":"/services/data/v58.0/sobjects/FeedComment/describe","sobject":"/services/data/v58.0/sobjects/FeedComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D5","label":"Feed + Item","labelPlural":"Feed Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FeedItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedItem/{ID}","describe":"/services/data/v58.0/sobjects/FeedItem/describe","quickActions":"/services/data/v58.0/sobjects/FeedItem/quickActions","layouts":"/services/data/v58.0/sobjects/FeedItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FeedItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I0","label":"Feed + Like","labelPlural":"Feed Likes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedLike","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedLike/{ID}","describe":"/services/data/v58.0/sobjects/FeedLike/describe","sobject":"/services/data/v58.0/sobjects/FeedLike"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09A","label":"Feed + Poll Choice","labelPlural":"Feed Poll Choices","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollChoice","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollChoice/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollChoice/describe","sobject":"/services/data/v58.0/sobjects/FeedPollChoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09B","label":"Feed + Poll Vote","labelPlural":"Feed Poll Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollVote","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollVote/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollVote/describe","sobject":"/services/data/v58.0/sobjects/FeedPollVote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08U","label":"Feed + Revision","labelPlural":"Feed Revisions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedRevision","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedRevision/{ID}","describe":"/services/data/v58.0/sobjects/FeedRevision/describe","sobject":"/services/data/v58.0/sobjects/FeedRevision"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QJ","label":"Feed + Signal","labelPlural":"Feed Signals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedSignal","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedSignal/{ID}","describe":"/services/data/v58.0/sobjects/FeedSignal/describe","sobject":"/services/data/v58.0/sobjects/FeedSignal"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D6","label":"Feed + Tracked Change","labelPlural":"Feed Tracked Changes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedTrackedChange","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedTrackedChange/{ID}","describe":"/services/data/v58.0/sobjects/FeedTrackedChange/describe","sobject":"/services/data/v58.0/sobjects/FeedTrackedChange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fe","label":"Field + Definition","labelPlural":"Field Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldDefinition/{ID}","describe":"/services/data/v58.0/sobjects/FieldDefinition/describe","sobject":"/services/data/v58.0/sobjects/FieldDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01k","label":"Field + Permissions","labelPlural":"Field Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldPermissions/{ID}","describe":"/services/data/v58.0/sobjects/FieldPermissions/describe","sobject":"/services/data/v58.0/sobjects/FieldPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Security Classification","labelPlural":"Field Security Classifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldSecurityClassification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldSecurityClassification/{ID}","describe":"/services/data/v58.0/sobjects/FieldSecurityClassification/describe","sobject":"/services/data/v58.0/sobjects/FieldSecurityClassification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mf","label":"Field + Service Mobile Settings","labelPlural":"Field Service Mobile Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe","layouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/layouts","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettings"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FieldServiceMobileSettings","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Service Mobile Settings Change Event","labelPlural":"Field Service Mobile + Settings Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettingsChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UJ","label":"Field + Service Org Settings","labelPlural":"Field Service Org Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceOrgSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceOrgSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0vI","label":"File + Event","labelPlural":"File Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FileEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FileEvent/describe","sobject":"/services/data/v58.0/sobjects/FileEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0wg","label":"File + Event Store","labelPlural":"File Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEventStore/{ID}","describe":"/services/data/v58.0/sobjects/FileEventStore/describe","sobject":"/services/data/v58.0/sobjects/FileEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06h","label":"FileSearchActivity","labelPlural":"File + Search Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileSearchActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileSearchActivity/{ID}","describe":"/services/data/v58.0/sobjects/FileSearchActivity/describe","sobject":"/services/data/v58.0/sobjects/FileSearchActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2kA","label":"Finance + Balance Snapshot","labelPlural":"Finance Balance Snapshots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceBalanceSnapshot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe","quickActions":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceBalanceSnapshot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Change Event","labelPlural":"Finance Balance Snapshot Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceBalanceSnapshot","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Share","labelPlural":"Finance Balance Snapshot Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0n3","label":"Finance + Transaction","labelPlural":"Finance Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceTransaction/describe","quickActions":"/services/data/v58.0/sobjects/FinanceTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceTransaction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Change Event","labelPlural":"Finance Transaction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceTransaction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Share","labelPlural":"Finance Transaction Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceTransactionShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"022","label":"Fiscal + Year Settings","labelPlural":"Fiscal Year Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FiscalYearSettings","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FiscalYearSettings/{ID}","describe":"/services/data/v58.0/sobjects/FiscalYearSettings/describe","sobject":"/services/data/v58.0/sobjects/FiscalYearSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06i","label":"Flex + Queue Item","labelPlural":"Flex Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlexQueueItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlexQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/FlexQueueItem/describe","sobject":"/services/data/v58.0/sobjects/FlexQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3dd","label":"Flow + Definition","labelPlural":"Flow Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowDefinitionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowDefinitionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowDefinitionView/describe","sobject":"/services/data/v58.0/sobjects/FlowDefinitionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eC","label":"Flow + Execution Error Event","labelPlural":"Flow Execution Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowExecutionErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fo","label":"Flow + Interview","labelPlural":"Flow Interviews","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowInterview","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowInterview/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowInterview/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterview/describe","layouts":"/services/data/v58.0/sobjects/FlowInterview/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowInterview"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8gZ","label":"Flow + Interview Log","labelPlural":"Flow Interview Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLog/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLog/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f6","label":"Flow + Interview Log Entry","labelPlural":"Flow Interview Log Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogEntry"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterviewLog","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Log Share","labelPlural":"Flow Interview Log Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterview","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Share","labelPlural":"Flow Interview Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jo","label":"Orchestration + Event","labelPlural":"Orchestration Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jE","label":"Orchestration + Run","labelPlural":"Orchestration Runs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Run Share","labelPlural":"Orchestration Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jF","label":"Orchestration + Stage Run","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration + Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration + Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow + Record Relation","labelPlural":"Flow Record Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowRecordRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowRecordRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowRecordRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowRecordRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31y","label":"Flow + Interview Stage Relation","labelPlural":"Flow Interview Stage Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowStageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowStageRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowStageRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowStageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2hU","label":"Flow + Test Result","labelPlural":"Flow Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResult/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResult/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResult"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowTestResult","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Test Result Share","labelPlural":"Flow Test Result Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResultShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResultShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResultShare/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResultShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YB","label":"Flow + Test View","labelPlural":"Flow Test Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestView/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestView/describe","sobject":"/services/data/v58.0/sobjects/FlowTestView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3ad","label":"Flow + Variable","labelPlural":"Flow Variables","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVariableView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVariableView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVariableView/describe","sobject":"/services/data/v58.0/sobjects/FlowVariableView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3vd","label":"Flow + Version","labelPlural":"Flow Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVersionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVersionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVersionView/describe","sobject":"/services/data/v58.0/sobjects/FlowVersionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00l","label":"Folder","labelPlural":"Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Folder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Folder/{ID}","describe":"/services/data/v58.0/sobjects/Folder/describe","sobject":"/services/data/v58.0/sobjects/Folder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Foldered + Content Document","labelPlural":"Foldered Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FolderedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FolderedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/FolderedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/FolderedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kn","label":"Formula + Function","labelPlural":"Formula Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunction/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunction/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fE","label":"Formula + Context Function","labelPlural":"Formula Context Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionAllowedType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kh","label":"Formula + Function Category","labelPlural":"Formula Function Categories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionCategory","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionCategory/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionCategory/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionCategory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06d","label":"Setting + Granted By License","labelPlural":"Settings Granted By Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GrantedByLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GrantedByLicense/{ID}","describe":"/services/data/v58.0/sobjects/GrantedByLicense/describe","sobject":"/services/data/v58.0/sobjects/GrantedByLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00G","label":"Group","labelPlural":"Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Group","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Group/{ID}","describe":"/services/data/v58.0/sobjects/Group/describe","sobject":"/services/data/v58.0/sobjects/Group"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"011","label":"Group + Member","labelPlural":"Group Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GroupMember/{ID}","describe":"/services/data/v58.0/sobjects/GroupMember/describe","sobject":"/services/data/v58.0/sobjects/GroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1gp","label":"Gateway + Provider Payment Method Type","labelPlural":"Gateway Provider Payment Method + Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"GtwyProvPaymentMethodType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/{ID}","describe":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/describe","sobject":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C0","label":"Holiday","labelPlural":"Holidays","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Holiday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Holiday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Holiday/{ID}","describe":"/services/data/v58.0/sobjects/Holiday/describe","layouts":"/services/data/v58.0/sobjects/Holiday/describe/layouts","sobject":"/services/data/v58.0/sobjects/Holiday"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9s4","label":"IP + Address Range","labelPlural":"IP Address Ranges","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"IPAddressRange","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/IPAddressRange/{ID}","describe":"/services/data/v58.0/sobjects/IPAddressRange/describe","layouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/layouts","sobject":"/services/data/v58.0/sobjects/IPAddressRange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09k","label":"Icon + Definition","labelPlural":"Icon Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IconDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IconDefinition/{ID}","describe":"/services/data/v58.0/sobjects/IconDefinition/describe","sobject":"/services/data/v58.0/sobjects/IconDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"087","label":"Idea","labelPlural":"Ideas","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Idea","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Idea/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Idea/{ID}","describe":"/services/data/v58.0/sobjects/Idea/describe","layouts":"/services/data/v58.0/sobjects/Idea/describe/layouts","sobject":"/services/data/v58.0/sobjects/Idea"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Idea","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Idea + Comment","labelPlural":"Idea Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdeaComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdeaComment/{ID}","describe":"/services/data/v58.0/sobjects/IdeaComment/describe","sobject":"/services/data/v58.0/sobjects/IdeaComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0k8","label":"Identity + Provider Event Store","labelPlural":"Identity Provider Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityProviderEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityProviderEventStore/{ID}","describe":"/services/data/v58.0/sobjects/IdentityProviderEventStore/describe","sobject":"/services/data/v58.0/sobjects/IdentityProviderEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jx","label":"Identity + Verification Event","labelPlural":"Identity Verification Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityVerificationEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityVerificationEvent/{ID}","describe":"/services/data/v58.0/sobjects/IdentityVerificationEvent/describe","sobject":"/services/data/v58.0/sobjects/IdentityVerificationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yu","label":"Identity + Provider Event Log","labelPlural":"Identity Event Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdpEventLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdpEventLog/{ID}","describe":"/services/data/v58.0/sobjects/IdpEventLog/describe","sobject":"/services/data/v58.0/sobjects/IdpEventLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6TS","label":"Trusted + Domain for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/IframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/IframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YL","label":"Image","labelPlural":"Images","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Image","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Image/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Image/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Image/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Image/describe","quickActions":"/services/data/v58.0/sobjects/Image/quickActions","layouts":"/services/data/v58.0/sobjects/Image/describe/layouts","sobject":"/services/data/v58.0/sobjects/Image"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Feed","labelPlural":"Image Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ImageFeed/describe","sobject":"/services/data/v58.0/sobjects/ImageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + History","labelPlural":"Image History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ImageHistory/describe","sobject":"/services/data/v58.0/sobjects/ImageHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Image","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Share","labelPlural":"Image Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageShare/{ID}","describe":"/services/data/v58.0/sobjects/ImageShare/describe","sobject":"/services/data/v58.0/sobjects/ImageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PK","label":"Individual","labelPlural":"Individuals","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Individual","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Individual/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Individual/{ID}","describe":"/services/data/v58.0/sobjects/Individual/describe","quickActions":"/services/data/v58.0/sobjects/Individual/quickActions","layouts":"/services/data/v58.0/sobjects/Individual/describe/layouts","sobject":"/services/data/v58.0/sobjects/Individual"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + Change Event","labelPlural":"Individual Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/IndividualChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/IndividualChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/IndividualChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + History","labelPlural":"Individual History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualHistory/{ID}","describe":"/services/data/v58.0/sobjects/IndividualHistory/describe","sobject":"/services/data/v58.0/sobjects/IndividualHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Individual","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T5","label":"Individual + Share","labelPlural":"Individual Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualShare/{ID}","describe":"/services/data/v58.0/sobjects/IndividualShare/describe","sobject":"/services/data/v58.0/sobjects/IndividualShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0El","label":"Installed + Mobile App","labelPlural":"Installed Mobile Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InstalledMobileApp","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InstalledMobileApp/{ID}","describe":"/services/data/v58.0/sobjects/InstalledMobileApp/describe","sobject":"/services/data/v58.0/sobjects/InstalledMobileApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3tt","label":"Invoice","labelPlural":"Invoices","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Invoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Invoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Invoice/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Invoice/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Invoice/describe","quickActions":"/services/data/v58.0/sobjects/Invoice/quickActions","layouts":"/services/data/v58.0/sobjects/Invoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/Invoice"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Feed","labelPlural":"Invoice Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice History","labelPlural":"Invoice History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5TV","label":"Invoice + Line","labelPlural":"Invoice Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"InvoiceLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/InvoiceLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/InvoiceLine/describe","quickActions":"/services/data/v58.0/sobjects/InvoiceLine/quickActions","layouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/InvoiceLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line Feed","labelPlural":"Invoice Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line History","labelPlural":"Invoice Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Invoice","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Share","labelPlural":"Invoice Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceShare/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceShare/describe","sobject":"/services/data/v58.0/sobjects/InvoiceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jp","label":"Job + Profile","labelPlural":"Job Profiles","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"JobProfile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/JobProfile/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/JobProfile/describe","quickActions":"/services/data/v58.0/sobjects/JobProfile/quickActions","layouts":"/services/data/v58.0/sobjects/JobProfile/describe/layouts","sobject":"/services/data/v58.0/sobjects/JobProfile"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Feed","labelPlural":"Job Profile Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileFeed/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileFeed/describe","sobject":"/services/data/v58.0/sobjects/JobProfileFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile History","labelPlural":"Job Profile History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileHistory/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileHistory/describe","sobject":"/services/data/v58.0/sobjects/JobProfileHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"JobProfile","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Share","labelPlural":"Job Profile Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileShare/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileShare/describe","sobject":"/services/data/v58.0/sobjects/JobProfileShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0in","label":"Knowledgeable + User","labelPlural":"Knowledgeable Users","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"KnowledgeableUser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/KnowledgeableUser/{ID}","describe":"/services/data/v58.0/sobjects/KnowledgeableUser/describe","sobject":"/services/data/v58.0/sobjects/KnowledgeableUser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00Q","label":"Lead","labelPlural":"Leads","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Lead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Lead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Lead/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Lead/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Lead/listviews","describe":"/services/data/v58.0/sobjects/Lead/describe","quickActions":"/services/data/v58.0/sobjects/Lead/quickActions","layouts":"/services/data/v58.0/sobjects/Lead/describe/layouts","sobject":"/services/data/v58.0/sobjects/Lead"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Change Event","labelPlural":"Lead Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LeadChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LeadChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LeadChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CL","label":"Lead + Clean Info","labelPlural":"Lead Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/LeadCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/LeadCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Feed","labelPlural":"Lead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadFeed/{ID}","describe":"/services/data/v58.0/sobjects/LeadFeed/describe","sobject":"/services/data/v58.0/sobjects/LeadFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + History","labelPlural":"Lead History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadHistory/{ID}","describe":"/services/data/v58.0/sobjects/LeadHistory/describe","sobject":"/services/data/v58.0/sobjects/LeadHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Lead","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01o","label":"Lead + Share","labelPlural":"Lead Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadShare/{ID}","describe":"/services/data/v58.0/sobjects/LeadShare/describe","sobject":"/services/data/v58.0/sobjects/LeadShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Lead + Status Value","labelPlural":"Lead Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadStatus/{ID}","describe":"/services/data/v58.0/sobjects/LeadStatus/describe","sobject":"/services/data/v58.0/sobjects/LeadStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fw","label":"Legal + Entity","labelPlural":"Legal Entities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LegalEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LegalEntity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LegalEntity/describe","quickActions":"/services/data/v58.0/sobjects/LegalEntity/quickActions","layouts":"/services/data/v58.0/sobjects/LegalEntity/describe/layouts","sobject":"/services/data/v58.0/sobjects/LegalEntity"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityFeed/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityFeed/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity History","labelPlural":"Legal Entity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityHistory/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityHistory/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LegalEntity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity Share","labelPlural":"Legal Entity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityShare/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityShare/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0S1","label":"Lightning + Experience Theme","labelPlural":"Lightning Experience Themes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningExperienceTheme","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningExperienceTheme/{ID}","describe":"/services/data/v58.0/sobjects/LightningExperienceTheme/describe","sobject":"/services/data/v58.0/sobjects/LightningExperienceTheme"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7MM","label":"LightningOnboardingConfig","labelPlural":"LightningOnboardingConfigs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningOnboardingConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningOnboardingConfig/{ID}","describe":"/services/data/v58.0/sobjects/LightningOnboardingConfig/describe","sobject":"/services/data/v58.0/sobjects/LightningOnboardingConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bh","label":"Lightning + URI Event","labelPlural":"Lightning URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEvent/{ID}","describe":"/services/data/v58.0/sobjects/LightningUriEvent/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bi","label":"Lightning + URI Event Stream","labelPlural":"Lightning URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LightningUriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LightningUriEventStream/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XB","label":"List + Email","labelPlural":"List Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ListEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ListEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ListEmail/{ID}","describe":"/services/data/v58.0/sobjects/ListEmail/describe","layouts":"/services/data/v58.0/sobjects/ListEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ListEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ListEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Change Event","labelPlural":"List Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ListEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ListEmailChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XF","label":"List + Email Individual Recipient","labelPlural":"List Email Individual Recipients","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailIndividualRecipient","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/describe","sobject":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XD","label":"List + Email Recipient Source","labelPlural":"List Email Recipient Sources","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailRecipientSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailRecipientSource/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailRecipientSource/describe","sobject":"/services/data/v58.0/sobjects/ListEmailRecipientSource"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ListEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Share","labelPlural":"List Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ListEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00B","label":"List + View","labelPlural":"List Views","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListView/{ID}","describe":"/services/data/v58.0/sobjects/ListView/describe","sobject":"/services/data/v58.0/sobjects/ListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Dd","label":"List + View Chart","labelPlural":"List View Charts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChart","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChart/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChart/describe","sobject":"/services/data/v58.0/sobjects/ListViewChart"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0De","label":"List + View Chart Instance","labelPlural":"List View Chart Instances","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChartInstance","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChartInstance/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChartInstance/describe","sobject":"/services/data/v58.0/sobjects/ListViewChartInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0X8","label":"List + View Event","labelPlural":"List View Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEvent/{ID}","describe":"/services/data/v58.0/sobjects/ListViewEvent/describe","sobject":"/services/data/v58.0/sobjects/ListViewEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XG","label":"List + View Event Stream","labelPlural":"List View Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListViewEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ListViewEventStream/describe","sobject":"/services/data/v58.0/sobjects/ListViewEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"131","label":"Location","labelPlural":"Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Location","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Location/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Location/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Location/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Location/describe","quickActions":"/services/data/v58.0/sobjects/Location/quickActions","layouts":"/services/data/v58.0/sobjects/Location/describe/layouts","sobject":"/services/data/v58.0/sobjects/Location"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Change Event","labelPlural":"Location Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Feed","labelPlural":"Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gh","label":"Location + Group","labelPlural":"Location Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroup/describe","quickActions":"/services/data/v58.0/sobjects/LocationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/LocationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gx","label":"Location + Group Assignment","labelPlural":"Location Group Assignments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroupAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroupAssignment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe","layouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroupAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Feed","labelPlural":"Location Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group History","labelPlural":"Location Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LocationGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Share","labelPlural":"Location Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupShare/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + History","labelPlural":"Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Location","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Share","labelPlural":"Location Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationShare/describe","sobject":"/services/data/v58.0/sobjects/LocationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VX","label":"LoginAs + Event","labelPlural":"LoginAs Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginAsEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VY","label":"LoginAs + Event Stream","labelPlural":"LoginAs Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginAsEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginAsEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1HB","label":"Login + Event","labelPlural":"Login Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ll","label":"Login + Event Stream","labelPlural":"Login Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04F","label":"Login + Geo Data","labelPlural":"Login Geo Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginGeo","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginGeo/{ID}","describe":"/services/data/v58.0/sobjects/LoginGeo/describe","sobject":"/services/data/v58.0/sobjects/LoginGeo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ya","label":"Login + History","labelPlural":"Login History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginHistory/{ID}","describe":"/services/data/v58.0/sobjects/LoginHistory/describe","sobject":"/services/data/v58.0/sobjects/LoginHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"710","label":"Login + IP","labelPlural":"Login IP","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginIp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginIp/{ID}","describe":"/services/data/v58.0/sobjects/LoginIp/describe","sobject":"/services/data/v58.0/sobjects/LoginIp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06M","label":"Logout + Event","labelPlural":"Logout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEvent/{ID}","describe":"/services/data/v58.0/sobjects/LogoutEvent/describe","sobject":"/services/data/v58.0/sobjects/LogoutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PH","label":"Logout + Event Stream","labelPlural":"Logout Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LogoutEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LogoutEventStream/describe","sobject":"/services/data/v58.0/sobjects/LogoutEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lookups + from Activity","labelPlural":"Lookups from Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LookedUpFromActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LookedUpFromActivity/{ID}","describe":"/services/data/v58.0/sobjects/LookedUpFromActivity/describe","sobject":"/services/data/v58.0/sobjects/LookedUpFromActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"873","label":"ML + Model","labelPlural":"ML Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModel/describe","sobject":"/services/data/v58.0/sobjects/MLModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"876","label":"ML + Model Factor","labelPlural":"ML Model Factors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactor/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"877","label":"ML + Model Factor Component","labelPlural":"ML Model Factor Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactorComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactorComponent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactorComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"874","label":"ML + Model Metric","labelPlural":"ML Model Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelMetric/{ID}","describe":"/services/data/v58.0/sobjects/MLModelMetric/describe","sobject":"/services/data/v58.0/sobjects/MLModelMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6gt","label":"ML + Prediction Definition","labelPlural":"ML Prediction Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLPredictionDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLPredictionDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLPredictionDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLPredictionDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7gh","label":"ML + Recommendation Definition","labelPlural":"ML Recommendation Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLRecommendationDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLRecommendationDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLRecommendationDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLRecommendationDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JZ","label":"Macro","labelPlural":"Macros","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Macro","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Macro/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Macro/{ID}","describe":"/services/data/v58.0/sobjects/Macro/describe","layouts":"/services/data/v58.0/sobjects/Macro/describe/layouts","sobject":"/services/data/v58.0/sobjects/Macro"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Change Event","labelPlural":"Macro Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + History","labelPlural":"Macro History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroHistory/{ID}","describe":"/services/data/v58.0/sobjects/MacroHistory/describe","sobject":"/services/data/v58.0/sobjects/MacroHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ji","label":"Macro + Instruction","labelPlural":"Macro Instructions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstruction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstruction/{ID}","describe":"/services/data/v58.0/sobjects/MacroInstruction/describe","sobject":"/services/data/v58.0/sobjects/MacroInstruction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MacroInstruction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Instruction Change Event","labelPlural":"Macro Instruction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstructionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Macro","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Share","labelPlural":"Macro Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroShare/describe","sobject":"/services/data/v58.0/sobjects/MacroShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5ML","label":"Macro + Usage","labelPlural":"Macro Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MacroUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MacroUsage/describe","sobject":"/services/data/v58.0/sobjects/MacroUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MacroUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Usage Share","labelPlural":"Macro Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroUsageShare/describe","sobject":"/services/data/v58.0/sobjects/MacroUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01H","label":"Mail + Merge Template","labelPlural":"Mail Merge Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MailmergeTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MailmergeTemplate/{ID}","describe":"/services/data/v58.0/sobjects/MailmergeTemplate/describe","sobject":"/services/data/v58.0/sobjects/MailmergeTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MA","label":"Maintenance + Asset","labelPlural":"Maintenance Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceAsset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAsset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceAsset/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceAsset/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceAsset"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Change Event","labelPlural":"Maintenance Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Feed","labelPlural":"Maintenance Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset History","labelPlural":"Maintenance Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MP","label":"Maintenance + Plan","labelPlural":"Maintenance Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenancePlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenancePlan/describe","quickActions":"/services/data/v58.0/sobjects/MaintenancePlan/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenancePlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Change Event","labelPlural":"Maintenance Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Feed","labelPlural":"Maintenance Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan History","labelPlural":"Maintenance Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenancePlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Share","labelPlural":"Maintenance Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7fc","label":"Maintenance + Work Rule","labelPlural":"Maintenance Work Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceWorkRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceWorkRule/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Change Event","labelPlural":"Maintenance Work Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Feed","labelPlural":"Maintenance Work Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule History","labelPlural":"Maintenance Work Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenanceWorkRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Share","labelPlural":"Maintenance Work Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"20Y","label":"Managed + Content","labelPlural":"Managed Contents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContent/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContent/describe","layouts":"/services/data/v58.0/sobjects/ManagedContent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ap","label":"Managed + Content Channel","labelPlural":"Managed Content Channels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentChannel/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentChannel/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zu","label":"Managed + Content Space","labelPlural":"Managed Content Spaces","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ManagedContentSpace","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentSpace/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentSpace/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentSpace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Ps","label":"Managed + Content Variant","labelPlural":"Managed Content Variants","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariant","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariant/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentVariant/describe","layouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContentVariant"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ManagedContentVariant","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Managed + Content Variant Change Event","labelPlural":"Managed Content Variant Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching + Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching + Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My + Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named + Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note + and Attachment","labelPlural":"Notes and Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"NoteAndAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NoteAndAttachment/{ID}","describe":"/services/data/v58.0/sobjects/NoteAndAttachment/describe","sobject":"/services/data/v58.0/sobjects/NoteAndAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ud","label":"OAuth + Custom Scope","labelPlural":"OAuth Custom Scopes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScope","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScope/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScope/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScope"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ue","label":"OAuth + Custom Scope App ","labelPlural":"OAuth Custom Scope Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScopeApp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScopeApp/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScopeApp/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScopeApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CQ","label":"Oauth + Token","labelPlural":"Oauth Tokens","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthToken","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthToken/{ID}","describe":"/services/data/v58.0/sobjects/OauthToken/describe","sobject":"/services/data/v58.0/sobjects/OauthToken"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"110","label":"Object + Permissions","labelPlural":"Object Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ObjectPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ObjectPermissions/{ID}","describe":"/services/data/v58.0/sobjects/ObjectPermissions/describe","sobject":"/services/data/v58.0/sobjects/ObjectPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UG","label":"Onboarding + Metrics","labelPlural":"Onboarding Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OnboardingMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OnboardingMetrics/{ID}","describe":"/services/data/v58.0/sobjects/OnboardingMetrics/describe","sobject":"/services/data/v58.0/sobjects/OnboardingMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Open + Activity","labelPlural":"Open Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpenActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpenActivity/{ID}","describe":"/services/data/v58.0/sobjects/OpenActivity/describe","sobject":"/services/data/v58.0/sobjects/OpenActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OH","label":"Operating + Hours","labelPlural":"Operating Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHours/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHours/describe","quickActions":"/services/data/v58.0/sobjects/OperatingHours/quickActions","layouts":"/services/data/v58.0/sobjects/OperatingHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHours"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Change Event","labelPlural":"Operating Hours Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Feed","labelPlural":"Operating Hours Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jG","label":"Operating + Hours Holiday","labelPlural":"Operating Hours Holidays","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHoursHoliday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHoliday/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe","layouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHoursHoliday"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHoursHoliday","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Holiday Feed","labelPlural":"Operating Hours Holiday Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursHolidayFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"006","label":"Opportunity","labelPlural":"Opportunities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Opportunity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Opportunity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Opportunity/listviews","describe":"/services/data/v58.0/sobjects/Opportunity/describe","quickActions":"/services/data/v58.0/sobjects/Opportunity/quickActions","layouts":"/services/data/v58.0/sobjects/Opportunity/describe/layouts","sobject":"/services/data/v58.0/sobjects/Opportunity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Change Event","labelPlural":"Opportunity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00J","label":"Opportunity: + Competitor","labelPlural":"Opportunity: Competitor","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityCompetitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityCompetitor/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityCompetitor/describe","sobject":"/services/data/v58.0/sobjects/OpportunityCompetitor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00K","label":"Opportunity + Contact Role","labelPlural":"Opportunity Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRole/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityContactRole/describe","quickActions":"/services/data/v58.0/sobjects/OpportunityContactRole/quickActions","layouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OpportunityContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Contact Role Change Event","labelPlural":"Opportunity Contact Role Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Feed","labelPlural":"Opportunity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFeed/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFeed/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Field History","labelPlural":"Opportunity Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFieldHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"008","label":"Opportunity + History","labelPlural":"Opportunity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00k","label":"Opportunity + Product","labelPlural":"Opportunity Product","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OpportunityLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityLineItem/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityLineItem/describe","layouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityLineItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Opportunity + Partner","labelPlural":"Opportunity Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityPartner/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityPartner/describe","layouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Opportunity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00t","label":"Opportunity + Share","labelPlural":"Opportunity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityShare/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityShare/describe","sobject":"/services/data/v58.0/sobjects/OpportunityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Opportunity + Stage","labelPlural":"Opportunity Stage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityStage","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityStage/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityStage/describe","sobject":"/services/data/v58.0/sobjects/OpportunityStage"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"801","label":"Order","labelPlural":"Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Order","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order/describe","quickActions":"/services/data/v58.0/sobjects/Order/quickActions","layouts":"/services/data/v58.0/sobjects/Order/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Change Event","labelPlural":"Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Feed","labelPlural":"Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + History","labelPlural":"Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"802","label":"Order + Product","labelPlural":"Order Products","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OrderItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OrderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OrderItem/{ID}","describe":"/services/data/v58.0/sobjects/OrderItem/describe","layouts":"/services/data/v58.0/sobjects/OrderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OrderItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Change Event","labelPlural":"Order Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Feed","labelPlural":"Order Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product History","labelPlural":"Order Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fy","label":"Order + Share","labelPlural":"Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderShare/{ID}","describe":"/services/data/v58.0/sobjects/OrderShare/describe","sobject":"/services/data/v58.0/sobjects/OrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Status Value","labelPlural":"Order Status Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/OrderStatus/describe","sobject":"/services/data/v58.0/sobjects/OrderStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Stripe Coupon","labelPlural":"Change Event: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Stripe Coupon","labelPlural":"Share: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1N","label":"Order + Stripe Coupon","labelPlural":"Order Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D3","label":"Organization + Email Address Security","labelPlural":"Organization Email Address Security","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgEmailAddressSecurity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/{ID}","describe":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/describe","sobject":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OL","label":"Org + Lifecycle Notification","labelPlural":"Org Lifecycle Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgLifecycleNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgLifecycleNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrgLifecycleNotification/eventSchema","describe":"/services/data/v58.0/sobjects/OrgLifecycleNotification/describe","sobject":"/services/data/v58.0/sobjects/OrgLifecycleNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3v1","label":"Org + Metric","labelPlural":"Org Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetric/{ID}","describe":"/services/data/v58.0/sobjects/OrgMetric/describe","sobject":"/services/data/v58.0/sobjects/OrgMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9aM","label":"Org + Metric Scan Result","labelPlural":"Org Metric Scan Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanResult/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6mX","label":"Org + Metric Scan Summary","labelPlural":"Org Metric Scan Summaries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanSummary","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanSummary/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanSummary"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D2","label":"Organization-wide + From Email Address","labelPlural":"Organization-wide From Email Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgWideEmailAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgWideEmailAddress/{ID}","describe":"/services/data/v58.0/sobjects/OrgWideEmailAddress/describe","sobject":"/services/data/v58.0/sobjects/OrgWideEmailAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00D","label":"Organization","labelPlural":"Organizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization/{ID}","describe":"/services/data/v58.0/sobjects/Organization/describe","sobject":"/services/data/v58.0/sobjects/Organization"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Organization_Type__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Organization Type","labelPlural":"Change Event: Organization Type","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1O","label":"Organization + Type","labelPlural":"Organization Type","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__c/{ID}","describe":"/services/data/v58.0/sobjects/Organization_Type__c/describe","quickActions":"/services/data/v58.0/sobjects/Organization_Type__c/quickActions","layouts":"/services/data/v58.0/sobjects/Organization_Type__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Organization_Type__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q1","label":"Outgoing + Email","labelPlural":"Outgoing Emails","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmail/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmail/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q3","label":"Outgoing + Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change + Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party + Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Feed","labelPlural":"Party Consent Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent History","labelPlural":"Party Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PartyConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Share","labelPlural":"Party Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentShare/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0aQ","label":"Payment","labelPlural":"Payments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Payment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Payment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Payment/{ID}","describe":"/services/data/v58.0/sobjects/Payment/describe","quickActions":"/services/data/v58.0/sobjects/Payment/quickActions","layouts":"/services/data/v58.0/sobjects/Payment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Payment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9tv","label":"Payment + Authorization Adjustment","labelPlural":"Payment Authorization Adjustments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthAdjustment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthAdjustment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xc","label":"Payment + Authorization","labelPlural":"Payment Authorizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthorization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthorization/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthorization/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthorization/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthorization"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Payment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PaymentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PaymentFeed/describe","sobject":"/services/data/v58.0/sobjects/PaymentFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0b0","label":"Payment + Gateway","labelPlural":"Payment Gateways","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGateway","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGateway/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGateway/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGateway/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGateway"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xt","label":"Payment + Gateway Log","labelPlural":"Payment Gateway Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayLog/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGatewayLog/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cJ","label":"Payment + Gateway Provider","labelPlural":"Payment Gateway Providers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayProvider/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe","layouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9zx","label":"Payment + Group","labelPlural":"Payment Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGroup/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGroup/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGroup/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1PL","label":"Payment + Line Invoice","labelPlural":"Payment Line Invoices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentLineInvoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentLineInvoice/{ID}","describe":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe","quickActions":"/services/data/v58.0/sobjects/PaymentLineInvoice/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentLineInvoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":true,"isSubtype":false,"keyPrefix":"0aa","label":"Payment + Method","labelPlural":"Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentMethod","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/PaymentMethod/describe","layouts":"/services/data/v58.0/sobjects/PaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"026","label":"Period","labelPlural":"Period","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Period","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Period/{ID}","describe":"/services/data/v58.0/sobjects/Period/describe","sobject":"/services/data/v58.0/sobjects/Period"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PS","label":"Permission + Set","labelPlural":"Permission Sets","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSet/describe","sobject":"/services/data/v58.0/sobjects/PermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pa","label":"Permission + Set Assignment","labelPlural":"Permission Set Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetAssignment/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetAssignment/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f3","label":"Permission + Set Event","labelPlural":"Permission Set Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PermissionSetEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PermissionSetEvent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f9","label":"Permission + Set Event Store ","labelPlural":"Permission Set Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEventStore/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetEventStore/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PG","label":"Permission + Set Group","labelPlural":"Permission Set Groups","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSetGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroup/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroup/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PM","label":"Permission + Set Group Component","labelPlural":"Permission Set Group Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetGroupComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroupComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PL","label":"Permission + Set License","labelPlural":"Permission Set Licenses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicense/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicense/describe","layouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/layouts","sobject":"/services/data/v58.0/sobjects/PermissionSetLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2LA","label":"Permission + Set License Assignment","labelPlural":"Permission Set License Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicenseAssign","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01P","label":"Permission + Set Tab Setting","labelPlural":"Permission Set Tab Setting","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetTabSetting","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetTabSetting/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetTabSetting/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetTabSetting"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pv","label":"Picklist + Value Info","labelPlural":"Picklist Value Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PicklistValueInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PicklistValueInfo/{ID}","describe":"/services/data/v58.0/sobjects/PicklistValueInfo/describe","sobject":"/services/data/v58.0/sobjects/PicklistValueInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JV","label":"Platform + Action","labelPlural":"Platform Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformAction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformAction/{ID}","describe":"/services/data/v58.0/sobjects/PlatformAction/describe","sobject":"/services/data/v58.0/sobjects/PlatformAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Er","label":"Platform + Cache Partition","labelPlural":"Platform Cache Partitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartition/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartition/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ev","label":"Platform + Cache Partition Type","labelPlural":"Platform Cache Partition Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartitionType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartitionType/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartitionType/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartitionType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Kk","label":"Platform + Event Usage Metric","labelPlural":"Platform Event Usage Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformEventUsageMetric","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/{ID}","describe":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/describe","sobject":"/services/data/v58.0/sobjects/PlatformEventUsageMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0V2","label":"Platform + Status Alert Event","labelPlural":"Platform Status Alert Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformStatusAlertEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/describe","sobject":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01s","label":"Price + Book","labelPlural":"Price Books","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Pricebook2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Pricebook2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Pricebook2/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2/describe","layouts":"/services/data/v58.0/sobjects/Pricebook2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Pricebook2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Change Event","labelPlural":"Price Book Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book History","labelPlural":"Price Book History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2History/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2History/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01u","label":"Price + Book Entry","labelPlural":"Price Book Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PricebookEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PricebookEntry/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntry/describe","layouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/PricebookEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry Change Event","labelPlural":"Price Book Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry History","labelPlural":"Price Book Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04a","label":"Process + Definition","labelPlural":"Process Definition","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ProcessDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ProcessDefinition/describe","sobject":"/services/data/v58.0/sobjects/ProcessDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Pe","label":"Process + Exception","labelPlural":"Process Exceptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProcessException","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProcessException/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProcessException/describe","quickActions":"/services/data/v58.0/sobjects/ProcessException/quickActions","layouts":"/services/data/v58.0/sobjects/ProcessException/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProcessException"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4v2","label":"Process + Exception Event","labelPlural":"Process Exception Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProcessExceptionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProcessExceptionEvent/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProcessException","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Exception Share","labelPlural":"Process Exception Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionShare/{ID}","describe":"/services/data/v58.0/sobjects/ProcessExceptionShare/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"11Q","label":"Process + Flow Migration","labelPlural":"Process Flow Migration Objects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessFlowMigration","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessFlowMigration/{ID}","describe":"/services/data/v58.0/sobjects/ProcessFlowMigration/describe","sobject":"/services/data/v58.0/sobjects/ProcessFlowMigration"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04g","label":"Process + Instance","labelPlural":"Process Instance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstance","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstance/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstance/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Instance History","labelPlural":"Process Instance History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceHistory/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OO","label":"Process + Instance Node","labelPlural":"Process Instance Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04h","label":"Process + Instance Step","labelPlural":"Process Instance Step","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceStep","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceStep/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceStep/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04i","label":"Approval + Request","labelPlural":"Approval Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceWorkitem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04b","label":"Process + Node","labelPlural":"Process Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessNode","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01t","label":"Product","labelPlural":"Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Product2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Product2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Product2/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Product2/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Product2/describe","quickActions":"/services/data/v58.0/sobjects/Product2/quickActions","layouts":"/services/data/v58.0/sobjects/Product2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Product2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Change Event","labelPlural":"Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Product2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Product2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Product2ChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Feed","labelPlural":"Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2Feed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2Feed/{ID}","describe":"/services/data/v58.0/sobjects/Product2Feed/describe","sobject":"/services/data/v58.0/sobjects/Product2Feed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + History","labelPlural":"Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2History/{ID}","describe":"/services/data/v58.0/sobjects/Product2History/describe","sobject":"/services/data/v58.0/sobjects/Product2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gv","label":"Product + Consumed","labelPlural":"Products Consumed","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductConsumed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumed/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumed/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumed/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumed"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Change Event","labelPlural":"Product Consumed Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Feed","labelPlural":"Product Consumed Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed History","labelPlural":"Product Consumed History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pY","label":"Product + Consumed State","labelPlural":"Product Consumed States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumedState/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumedState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumedState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumedState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed State History","labelPlural":"Product Consumed State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mq","label":"Product + Consumption Schedule","labelPlural":"Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe","layouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumptionSchedule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E9","label":"Product + Entitlement Template","labelPlural":"Product Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductEntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/ProductEntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Co","label":"Product + Item","labelPlural":"Product Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Change Event","labelPlural":"Product Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Feed","labelPlural":"Product Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item History","labelPlural":"Product Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Share","labelPlural":"Product Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemShare/describe","sobject":"/services/data/v58.0/sobjects/ProductItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TR","label":"Product + Item Transaction","labelPlural":"Product Item Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItemTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItemTransaction/describe","quickActions":"/services/data/v58.0/sobjects/ProductItemTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItemTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction Feed","labelPlural":"Product Item Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction History","labelPlural":"Product Item Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TS","label":"Product + Request","labelPlural":"Product Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequest/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequest/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequest"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Change Event","labelPlural":"Product Request Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Feed","labelPlural":"Product Request Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request History ","labelPlural":"Product Request History ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tw","label":"Product + Request Line Item","labelPlural":"Product Request Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequestLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequestLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Change Event","labelPlural":"Product Request Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Feed","labelPlural":"Product Request Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item History ","labelPlural":"Product Request Line Item History + ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Share","labelPlural":"Product Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gn","label":"Product + Required","labelPlural":"Products Required","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequired","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequired/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequired/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequired/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequired/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequired"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Change Event","labelPlural":"Product Required Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Feed","labelPlural":"Product Required Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required History","labelPlural":"Product Required History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iR","label":"Product + Service Campaign","labelPlural":"Product Service Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaign/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaign"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Feed","labelPlural":"Product Service Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign History","labelPlural":"Product Service Campaign History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"23N","label":"Product + Service Campaign Item","labelPlural":"Product Service Campaign Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaignItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Feed","labelPlural":"Product Service Campaign Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item History","labelPlural":"Product Service Campaign Item + History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Status","labelPlural":"Product Service Campaign Item + Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductServiceCampaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Share","labelPlural":"Product Service Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Status","labelPlural":"Product Service Campaign Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lu","label":"Product + Transfer","labelPlural":"Product Transfers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductTransfer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransfer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransfer/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransfer/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransfer"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Change Event","labelPlural":"Product Transfer Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Feed","labelPlural":"Product Transfer Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer History","labelPlural":"Product Transfer History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductTransfer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Share","labelPlural":"Product Transfer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferShare/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0nw","label":"Product + Transfer State","labelPlural":"Product Transfer States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductTransferState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransferState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransferState/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransferState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransferState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransferState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer State History","labelPlural":"Product Transfer State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Uj","label":"Product + Warranty Term","labelPlural":"Product Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductWarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTerm/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/ProductWarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTerm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term Feed","labelPlural":"Product Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term History","labelPlural":"Product Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00e","label":"Profile","labelPlural":"Profile","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Profile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Profile/{ID}","describe":"/services/data/v58.0/sobjects/Profile/describe","sobject":"/services/data/v58.0/sobjects/Profile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sk","label":"Skill","labelPlural":"Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProfileSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkill/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkill/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkill"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SE","label":"Endorsement","labelPlural":"Endorsements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsement"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + Feed","labelPlural":"Endorsement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + History","labelPlural":"Endorsement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Feed","labelPlural":"Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + History","labelPlural":"Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProfileSkill","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Share","labelPlural":"Skill Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillShare/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillShare/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SM","label":"Skill + User","labelPlural":"Skill Users","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillUser/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillUser/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillUser"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User Feed","labelPlural":"Skill User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User History","labelPlural":"Skill User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bs","label":"Prompt","labelPlural":"Prompts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Prompt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Prompt/{ID}","describe":"/services/data/v58.0/sobjects/Prompt/describe","sobject":"/services/data/v58.0/sobjects/Prompt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bu","label":"Prompt + Action","labelPlural":"Prompt Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptAction/describe","sobject":"/services/data/v58.0/sobjects/PromptAction"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptAction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Action Share","labelPlural":"Prompt Action Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptActionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptActionShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptActionShare/describe","sobject":"/services/data/v58.0/sobjects/PromptActionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4Dr","label":"Prompt + Error","labelPlural":"Prompt Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptError","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptError/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptError/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptError/describe","sobject":"/services/data/v58.0/sobjects/PromptError"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptError","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Error Share","labelPlural":"Prompt Error Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptErrorShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptErrorShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptErrorShare/describe","sobject":"/services/data/v58.0/sobjects/PromptErrorShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bt","label":"Prompt + Version","labelPlural":"Prompt Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptVersion/{ID}","describe":"/services/data/v58.0/sobjects/PromptVersion/describe","sobject":"/services/data/v58.0/sobjects/PromptVersion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pb","label":"Publisher","labelPlural":"Publishers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Publisher","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Publisher/{ID}","describe":"/services/data/v58.0/sobjects/Publisher/describe","sobject":"/services/data/v58.0/sobjects/Publisher"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IF","label":"Push + Topic","labelPlural":"Push Topics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PushTopic","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PushTopic/{ID}","describe":"/services/data/v58.0/sobjects/PushTopic/describe","sobject":"/services/data/v58.0/sobjects/PushTopic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03g","label":"Queue + sObject","labelPlural":"Queue sObjects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QueueSobject","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QueueSobject/{ID}","describe":"/services/data/v58.0/sobjects/QueueSobject/describe","sobject":"/services/data/v58.0/sobjects/QueueSobject"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"574","label":"Quick + Text","labelPlural":"Quick Text","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"QuickText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/QuickText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/QuickText/{ID}","describe":"/services/data/v58.0/sobjects/QuickText/describe","layouts":"/services/data/v58.0/sobjects/QuickText/describe/layouts","sobject":"/services/data/v58.0/sobjects/QuickText"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Change Event","labelPlural":"Quick Text Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/QuickTextChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/QuickTextChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/QuickTextChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text History","labelPlural":"Quick Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextHistory/describe","sobject":"/services/data/v58.0/sobjects/QuickTextHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickText","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Share","labelPlural":"Quick Text Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5QL","label":"Quick + Text Usage","labelPlural":"Quick Text Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/QuickTextUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/QuickTextUsage/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickTextUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Usage Share","labelPlural":"Quick Text Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextUsageShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QR","label":"Quote + Template Rich Text Data","labelPlural":"Quote Template Rich Text Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuoteTemplateRichTextData","queryable":false,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/{ID}","describe":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/describe","sobject":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Line_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Stripe Coupon Association","labelPlural":"Change Event: + Quote Line Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1P","label":"Quote + Line Stripe Coupon Association","labelPlural":"Quote Line Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon Association","labelPlural":"Change Event: Quote + Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1Q","label":"Quote + Stripe Coupon Association","labelPlural":"Quote Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon","labelPlural":"Change Event: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Quote_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Stripe Coupon","labelPlural":"Share: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1R","label":"Quote + Stripe Coupon","labelPlural":"Quote Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recently + Viewed","labelPlural":"Recently Viewed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecentlyViewed","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecentlyViewed/{ID}","describe":"/services/data/v58.0/sobjects/RecentlyViewed/describe","sobject":"/services/data/v58.0/sobjects/RecentlyViewed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pr","label":"Recommendation","labelPlural":"Recommendations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Recommendation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Recommendation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Recommendation/{ID}","describe":"/services/data/v58.0/sobjects/Recommendation/describe","layouts":"/services/data/v58.0/sobjects/Recommendation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Recommendation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Recommendation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recommendation + Change Event","labelPlural":"Recommendation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecommendationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecommendationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecommendationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rr","label":"Recommendation + Response","labelPlural":"Recommendation Responses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationResponse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationResponse/{ID}","describe":"/services/data/v58.0/sobjects/RecommendationResponse/describe","sobject":"/services/data/v58.0/sobjects/RecommendationResponse"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rw","label":"RecordAction","labelPlural":"RecordActions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordAction/{ID}","describe":"/services/data/v58.0/sobjects/RecordAction/describe","sobject":"/services/data/v58.0/sobjects/RecordAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ub","label":"RecordActionHistory","labelPlural":"RecordActionHistories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordActionHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordActionHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordActionHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordActionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"012","label":"Record + Type","labelPlural":"Record Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"RecordType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordType/{ID}","describe":"/services/data/v58.0/sobjects/RecordType/describe","sobject":"/services/data/v58.0/sobjects/RecordType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hr","label":"Recordset + Filter Criteria","labelPlural":"Recordset Filter Criteria","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteria"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Change Event","labelPlural":"Recordset Filter Criteria Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria History","labelPlural":"Recordset Filter Criteria History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hK","label":"Recordset + Filter Criteria Rule","labelPlural":"Recordset Filter Criteria Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteriaRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteriaRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Rule Change Event","labelPlural":"Recordset Filter Criteria + Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"RecordsetFilterCriteria","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Share","labelPlural":"Recordset Filter Criteria Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0yH","label":"Recordset + Filter Criteria Monitor","labelPlural":"Recordset Filter Criteria Monitors","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFltrCritMonitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Change Event","labelPlural":"Recordset Filter Criteria + Monitor Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Feed","labelPlural":"Recordset Filter Criteria Monitor + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor History","labelPlural":"Recordset Filter Criteria + Monitor History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9V6","label":"Allow + URL for Redirects","labelPlural":"Allow URLs for Redirects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RedirectWhitelistUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/{ID}","describe":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/describe","sobject":"/services/data/v58.0/sobjects/RedirectWhitelistUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cb","label":"Refund","labelPlural":"Refunds","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Refund","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Refund/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Refund/{ID}","describe":"/services/data/v58.0/sobjects/Refund/describe","quickActions":"/services/data/v58.0/sobjects/Refund/quickActions","layouts":"/services/data/v58.0/sobjects/Refund/describe/layouts","sobject":"/services/data/v58.0/sobjects/Refund"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dR","label":"Refund + Line Payment","labelPlural":"Refund Line Payments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"RefundLinePayment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RefundLinePayment/{ID}","describe":"/services/data/v58.0/sobjects/RefundLinePayment/describe","quickActions":"/services/data/v58.0/sobjects/RefundLinePayment/quickActions","layouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/layouts","sobject":"/services/data/v58.0/sobjects/RefundLinePayment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rc","label":"Related + List Column Definition","labelPlural":"Related List Column Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListColumnDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListColumnDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rl","label":"Related + List Definition","labelPlural":"Related List Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jv","label":"Relationship + Domain","labelPlural":"Relationship Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipDomain","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipDomain/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipDomain/describe","sobject":"/services/data/v58.0/sobjects/RelationshipDomain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ju","label":"Relationship","labelPlural":"Relationships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipInfo/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipInfo/describe","sobject":"/services/data/v58.0/sobjects/RelationshipInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VA","label":"Remote + Key Callout Event","labelPlural":"Remote Key Callout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RemoteKeyCalloutEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/describe","sobject":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00O","label":"Report","labelPlural":"Reports","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Report","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Report/{ID}","listviews":"/services/data/v58.0/sobjects/Report/listviews","describe":"/services/data/v58.0/sobjects/Report/describe","sobject":"/services/data/v58.0/sobjects/Report"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yv","label":"Report + Anomaly Event","labelPlural":"Report Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReportAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Z7","label":"Report + Anomaly Event Store","labelPlural":"Report Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReportAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReportAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Anomaly Event Store Feed","labelPlural":"Report Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qu","label":"Report + Event","labelPlural":"Report Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEvent/{ID}","describe":"/services/data/v58.0/sobjects/ReportEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ol","label":"Report + Event Stream","labelPlural":"Report Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ReportEventStream/describe","sobject":"/services/data/v58.0/sobjects/ReportEventStream"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Report","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Feed","labelPlural":"Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hw","label":"Resource + Absence","labelPlural":"Resource Absences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourceAbsence","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsence/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourceAbsence/describe","quickActions":"/services/data/v58.0/sobjects/ResourceAbsence/quickActions","layouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourceAbsence"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Change Event","labelPlural":"Resource Absence Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Feed","labelPlural":"Resource Absence Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence History","labelPlural":"Resource Absence History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kz","label":"Resource + Preference","labelPlural":"Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourcePreference/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourcePreference/describe","layouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourcePreference"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Change Event","labelPlural":"Resource Preference Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Feed","labelPlural":"Resource Preference Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference History","labelPlural":"Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2oN","label":"Return + Order","labelPlural":"Return Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrder/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrder/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Change Event","labelPlural":"Return Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Feed","labelPlural":"Return Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order History","labelPlural":"Return Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sn","label":"Return + Order Line Item","labelPlural":"Return Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Change Event","labelPlural":"Return Order Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Feed","labelPlural":"Return Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item History","labelPlural":"Return Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ReturnOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Share","labelPlural":"Return Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderShare/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Set","labelPlural":"Change Event: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__AttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Attribute Set","labelPlural":"Share: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a00","label":"Attribute + Set","labelPlural":"Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__AttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Value","labelPlural":"Change Event: Attribute Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a01","label":"Attribute + Value","labelPlural":"Attribute Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__BlockPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Block Price","labelPlural":"Change Event: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__BlockPrice__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Block Price","labelPlural":"Share: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a02","label":"Block + Price","labelPlural":"Block Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ColumnMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Column Metadata","labelPlural":"Change Event: Column Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ColumnMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a04","label":"Column + Metadata","labelPlural":"Columns Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ColumnMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Attribute","labelPlural":"Change Event: Configuration + Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Configuration Attribute","labelPlural":"Share: Configuration Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a05","label":"Configuration + Attribute","labelPlural":"Configuration Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ConfigurationAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Rule","labelPlural":"Change Event: Configuration Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a06","label":"Configuration + Rule","labelPlural":"Configuration Rules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Contracted Price","labelPlural":"Change Event: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Contracted Price","labelPlural":"History: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a07","label":"Contracted + Price","labelPlural":"Contracted Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Cost__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Cost","labelPlural":"Change Event: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Cost__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Cost","labelPlural":"Share: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a08","label":"Cost","labelPlural":"Costs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Cost__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomActionCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action Condition","labelPlural":"Change Event: Custom Action + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a09","label":"Custom + Action Condition","labelPlural":"Custom Action Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action","labelPlural":"Change Event: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomAction__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Action","labelPlural":"Share: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0A","label":"Custom + Action","labelPlural":"Custom Actions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomScript__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Script","labelPlural":"Change Event: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomScript__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Script","labelPlural":"Share: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0C","label":"Custom + Script","labelPlural":"Custom Scripts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomScript__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Dimension__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Dimension","labelPlural":"Change Event: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Dimension__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Dimension","labelPlural":"Share: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0D","label":"Price + Dimension","labelPlural":"Price Dimensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountCategory__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Category","labelPlural":"Change Event: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountCategory__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Category","labelPlural":"Share: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0E","label":"Discount + Category","labelPlural":"Discount Categories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountCategory__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Schedule","labelPlural":"Change Event: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Schedule","labelPlural":"History: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Schedule","labelPlural":"Share: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0G","label":"Discount + Schedule","labelPlural":"Discount Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Tier","labelPlural":"Change Event: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Tier","labelPlural":"History: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0H","label":"Discount + Tier","labelPlural":"Discount Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ErrorCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Condition","labelPlural":"Change Event: Error Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0I","label":"Error + Condition","labelPlural":"Error Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteProduct__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Product","labelPlural":"Change Event: Favorite Product","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0J","label":"Favorite + Product","labelPlural":"Favorite Product","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteShare__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Share","labelPlural":"Change Event: Favorite Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0K","label":"Favorite + Share","labelPlural":"Favorite Shares","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Favorite__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite","labelPlural":"Change Event: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Favorite__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Favorite","labelPlural":"Share: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0L","label":"Favorite","labelPlural":"Favorites","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Favorite__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Field Metadata","labelPlural":"Change Event: Field Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0M","label":"Field + Metadata","labelPlural":"Field Metadata","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: FieldSet Metadata","labelPlural":"Change Event: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + FieldSet Metadata","labelPlural":"Share: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0N","label":"FieldSet + Metadata","labelPlural":"FieldSets Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__FieldSetMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Column","labelPlural":"Change Event: Import Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Q","label":"Import + Column","labelPlural":"Import Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportFormat__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Format","labelPlural":"Change Event: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ImportFormat__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Import Format","labelPlural":"Share: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0R","label":"Import + Format","labelPlural":"Import Formats","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ImportFormat__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Install Processor Log","labelPlural":"Change Event: Install Processor + Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Install Processor Log","labelPlural":"Share: Install Processor Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0S","label":"Install + Processor Log","labelPlural":"Install Processor Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__InstallProcessorLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LineColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Line Column","labelPlural":"Change Event: Line Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0T","label":"Line + Column","labelPlural":"Line Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Localization__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Localization","labelPlural":"Change Event: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Localization__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Localization","labelPlural":"Share: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0U","label":"Localization","labelPlural":"Localizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Localization__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Localization__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupData__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Data","labelPlural":"Change Event: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupData__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Data","labelPlural":"Share: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0V","label":"Lookup + Data","labelPlural":"Lookup Data","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupQuery__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Query","labelPlural":"Change Event: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupQuery__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Query","labelPlural":"Share: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0W","label":"Lookup + Query","labelPlural":"Lookup Queries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OptionConstraint__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Option Constraint","labelPlural":"Change Event: Option Constraint","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0X","label":"Option + Constraint","labelPlural":"Option Constraints","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Rate","labelPlural":"Change Event: Order + Product Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Y","label":"Order + Product Consumption Rate","labelPlural":"Order Product Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Schedule","labelPlural":"Change Event: Order + Product Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Product Consumption Schedule","labelPlural":"Share: Order Product Consumption + Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Z","label":"Order + Product Consumption Schedule","labelPlural":"Order Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Action","labelPlural":"Change Event: Price Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0a","label":"Price + Action","labelPlural":"Price Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Condition","labelPlural":"Change Event: Price Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0b","label":"Price + Condition","labelPlural":"Price Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Rule","labelPlural":"Change Event: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Rule","labelPlural":"Share: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0c","label":"Price + Rule","labelPlural":"Price Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PriceRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Schedule","labelPlural":"Change Event: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Schedule","labelPlural":"History: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Schedule","labelPlural":"Share: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0d","label":"Price + Schedule","labelPlural":"Price Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Tier","labelPlural":"Change Event: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Tier","labelPlural":"History: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0e","label":"Price + Tier","labelPlural":"Price Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance Tier","labelPlural":"Change Event: Pricing Guidance + Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance Tier","labelPlural":"History: Pricing Guidance Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0f","label":"Pricing + Guidance Tier","labelPlural":"Pricing Guidance Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance","labelPlural":"Change Event: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance","labelPlural":"History: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PricingGuidance__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Pricing Guidance","labelPlural":"Share: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0g","label":"Pricing + Guidance","labelPlural":"Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Condition","labelPlural":"Change Event: Process Input + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0h","label":"Process + Input Condition","labelPlural":"Process Input Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Values","labelPlural":"Change Event: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Process Input Values","labelPlural":"Share: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0i","label":"Process + Input Values","labelPlural":"Process Input Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInput__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input","labelPlural":"Change Event: Process Input","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0j","label":"Process + Input","labelPlural":"Process Inputs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Action","labelPlural":"Change Event: Product Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0k","label":"Product + Action","labelPlural":"Product Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Attribute Set","labelPlural":"Change Event: Product Attribute + Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Attribute Set","labelPlural":"Share: Product Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0l","label":"Product + Attribute Set","labelPlural":"Product Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Item","labelPlural":"Change Event: Attribute Item","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0m","label":"Attribute + Item","labelPlural":"Attribute Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductFeature__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Feature","labelPlural":"Change Event: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductFeature__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Feature","labelPlural":"Share: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0n","label":"Product + Feature","labelPlural":"Product Features","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductOption__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Option","labelPlural":"Change Event: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductOption__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Option","labelPlural":"Share: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0o","label":"Product + Option","labelPlural":"Product Options","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Rule","labelPlural":"Change Event: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Rule","labelPlural":"Share: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0p","label":"Product + Rule","labelPlural":"Product Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ProductRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Document","labelPlural":"Change Event: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Document","labelPlural":"History: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0q","label":"Quote + Document","labelPlural":"Quote Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Rate","labelPlural":"Change Event: Quote Line + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0r","label":"Quote + Line Consumption Rate","labelPlural":"Quote Line Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Schedule","labelPlural":"Change Event: Quote + Line Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0s","label":"Quote + Line Consumption Schedule","labelPlural":"Quote Line Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Group","labelPlural":"Change Event: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Group","labelPlural":"History: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0t","label":"Quote + Line Group","labelPlural":"Quote Line Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Pricing Guidance","labelPlural":"Change Event: Quote Line + Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Pricing Guidance","labelPlural":"History: Quote Line Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0u","label":"Quote + Line Pricing Guidance","labelPlural":"Quote Line Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line","labelPlural":"Change Event: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line","labelPlural":"History: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0v","label":"Quote + Line","labelPlural":"Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteProcess__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Process","labelPlural":"Change Event: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteProcess__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Process","labelPlural":"Share: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0w","label":"Quote + Process","labelPlural":"Quote Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteProcess__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Template","labelPlural":"Change Event: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Template","labelPlural":"History: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Template","labelPlural":"Share: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0x","label":"Quote + Template","labelPlural":"Quote Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTemplate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTerm__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Term","labelPlural":"Change Event: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTerm__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Term","labelPlural":"Share: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0y","label":"Quote + Term","labelPlural":"Quote Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTerm__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote","labelPlural":"Change Event: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote","labelPlural":"History: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Quote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote","labelPlural":"Share: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0z","label":"Quote","labelPlural":"Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Quote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Quote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RecordJob__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Record Job","labelPlural":"Change Event: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RecordJob__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Record Job","labelPlural":"Share: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a10","label":"Record + Job","labelPlural":"Record Jobs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RelatedContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Additional Document","labelPlural":"Change Event: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RelatedContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Additional Document","labelPlural":"Share: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a12","label":"Additional + Document","labelPlural":"Additional Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchFilter__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Filter","labelPlural":"Change Event: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchFilter__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Filter","labelPlural":"Share: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a14","label":"Search + Filter","labelPlural":"Search Filters","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SearchFilter__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchIndex__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Index","labelPlural":"Change Event: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchIndex__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Index","labelPlural":"Share: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a15","label":"Search + Index","labelPlural":"Search Index","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Solution Group","labelPlural":"Change Event: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Solution Group","labelPlural":"History: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SolutionGroup__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Solution Group","labelPlural":"Share: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a16","label":"Solution + Group","labelPlural":"Solution Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SolutionGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedAsset__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Asset","labelPlural":"Change Event: Subscribed Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a17","label":"Subscribed + Asset","labelPlural":"Subscribed Assets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Quote Line","labelPlural":"Change Event: Subscribed Quote + Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscribed Quote Line","labelPlural":"Share: Subscribed Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a18","label":"Subscribed + Quote Line","labelPlural":"Subscribed Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Rate","labelPlural":"Change Event: Subscription + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a19","label":"Subscription + Consumption Rate","labelPlural":"Subscription Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Schedule","labelPlural":"Change Event: Subscription + Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1A","label":"Subscription + Consumption Schedule","labelPlural":"Subscription Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Subscription__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription","labelPlural":"Change Event: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Subscription__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscription","labelPlural":"Share: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1B","label":"Subscription","labelPlural":"Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SummaryVariable__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Summary Variable","labelPlural":"Change Event: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SummaryVariable__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Summary Variable","labelPlural":"Share: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1C","label":"Summary + Variable","labelPlural":"Summary Variables","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SummaryVariable__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TaxExemptionCertificate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Tax Exemption Certificate","labelPlural":"Change Event: Tax Exemption + Certificate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1D","label":"Tax + Exemption Certificate","labelPlural":"Tax Exemption Certificates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Content","labelPlural":"Change Event: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TemplateContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Template Content","labelPlural":"Share: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1E","label":"Template + Content","labelPlural":"Template Content","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__TemplateContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateSection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Section","labelPlural":"Change Event: Template Section","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1F","label":"Template + Section","labelPlural":"Template Sections","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TermCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Term Condition","labelPlural":"Change Event: Term Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1G","label":"Term + Condition","labelPlural":"Term Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Theme__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Theme","labelPlural":"Change Event: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Theme__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Theme","labelPlural":"Share: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1H","label":"Theme","labelPlural":"Themes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Theme__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Theme__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TimingLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Timing Log","labelPlural":"Change Event: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TimingLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Timing Log","labelPlural":"Share: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1I","label":"Timing + Log","labelPlural":"Timing Logs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__UpgradeSource__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Upgrade Source","labelPlural":"Change Event: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__UpgradeSource__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Upgrade Source","labelPlural":"Share: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1J","label":"Upgrade + Source","labelPlural":"Upgrade Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote Line","labelPlural":"Change Event: Web Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1K","label":"Web + Quote Line","labelPlural":"Web Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote","labelPlural":"Change Event: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Web Quote","labelPlural":"History: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__WebQuote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Web Quote","labelPlural":"Share: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1L","label":"Web + Quote","labelPlural":"Web Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__WebQuote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J4","label":"Service + Provider SAML Attribute","labelPlural":"Service Provider SAML Attributes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SPSamlAttributes","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SPSamlAttributes/{ID}","describe":"/services/data/v58.0/sobjects/SPSamlAttributes/describe","sobject":"/services/data/v58.0/sobjects/SPSamlAttributes"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0LE","label":"SAML + Single Sign-On Setting","labelPlural":"SAML Single Sign-On Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SamlSsoConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SamlSsoConfig/{ID}","describe":"/services/data/v58.0/sobjects/SamlSsoConfig/describe","sobject":"/services/data/v58.0/sobjects/SamlSsoConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hA","label":"Scheduling + Constraint","labelPlural":"Scheduling Constraints","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingConstraint","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraint/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SchedulingConstraint/describe","layouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingConstraint"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SchedulingConstraint","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scheduling + Constraint Share","labelPlural":"Scheduling Constraint Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingConstraintShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraintShare/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingConstraintShare/describe","sobject":"/services/data/v58.0/sobjects/SchedulingConstraintShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0no","label":"Scheduling + Objective","labelPlural":"Scheduling Objectives","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingObjective","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjective/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjective/describe","layouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingObjective"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0np","label":"Scheduling + Objective Parameter","labelPlural":"Scheduling Objective Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingObjectiveParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Md","label":"Scheduling + Rule","labelPlural":"Scheduling Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingRule/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRule/describe","layouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hm","label":"Scheduling + Rule Parameter","labelPlural":"Scheduling Rule Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingRuleParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingRuleParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRuleParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingRuleParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01N","label":"Custom + S-Control","labelPlural":"Custom S-Controls","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Scontrol","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Scontrol/{ID}","describe":"/services/data/v58.0/sobjects/Scontrol/describe","sobject":"/services/data/v58.0/sobjects/Scontrol"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01f","label":"Scorecard","labelPlural":"Scorecards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Scorecard","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Scorecard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Scorecard/{ID}","describe":"/services/data/v58.0/sobjects/Scorecard/describe","layouts":"/services/data/v58.0/sobjects/Scorecard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Scorecard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qn","label":"Scorecard + Association","labelPlural":"Scorecard Associations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ScorecardAssociation","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardAssociation/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardAssociation/describe","layouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardAssociation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Om","label":"Scorecard + Metric","labelPlural":"Scorecard Metrics","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ScorecardMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardMetric/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardMetric/describe","layouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardMetric"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Scorecard","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scorecard + Share","labelPlural":"Scorecard Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ScorecardShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ScorecardShare/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardShare/describe","sobject":"/services/data/v58.0/sobjects/ScorecardShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4co","label":"Search + Layout","labelPlural":"Search Layouts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SearchLayout","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchLayout/{ID}","describe":"/services/data/v58.0/sobjects/SearchLayout/describe","sobject":"/services/data/v58.0/sobjects/SearchLayout"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MD","label":"Promoted + Search Term","labelPlural":"Promoted Search Terms","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SearchPromotionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchPromotionRule/{ID}","describe":"/services/data/v58.0/sobjects/SearchPromotionRule/describe","layouts":"/services/data/v58.0/sobjects/SearchPromotionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SearchPromotionRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09v","label":"Security + Custom Baseline","labelPlural":"Security Custom Baselines","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SecurityCustomBaseline","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SecurityCustomBaseline/{ID}","describe":"/services/data/v58.0/sobjects/SecurityCustomBaseline/describe","sobject":"/services/data/v58.0/sobjects/SecurityCustomBaseline"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0q6","label":"Seller","labelPlural":"Sellers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Seller","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Seller/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Seller/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Seller/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Seller/describe","layouts":"/services/data/v58.0/sobjects/Seller/describe/layouts","sobject":"/services/data/v58.0/sobjects/Seller"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Seller","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + History","labelPlural":"Seller History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerHistory/{ID}","describe":"/services/data/v58.0/sobjects/SellerHistory/describe","sobject":"/services/data/v58.0/sobjects/SellerHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Seller","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + Share","labelPlural":"Seller Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerShare/{ID}","describe":"/services/data/v58.0/sobjects/SellerShare/describe","sobject":"/services/data/v58.0/sobjects/SellerShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sentry_Active_Config__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sentry Active Config","labelPlural":"Change Event: Sentry Active Config","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1S","label":"Sentry + Active Config","labelPlural":"Sentry Active Config","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe","quickActions":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m00","label":"Sentry + Config","labelPlural":"Sentry Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sentry_Config__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Config__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe","layouts":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Config__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"e00","label":"Sentry + Error","labelPlural":"Sentry Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Error__e","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Error__e/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Error__e/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Error__e/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Error__e"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jR","label":"Serialized + Product","labelPlural":"Serialized Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProduct","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProduct/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProduct/describe","quickActions":"/services/data/v58.0/sobjects/SerializedProduct/quickActions","layouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProduct"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Feed","labelPlural":"Serialized Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product History","labelPlural":"Serialized Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SerializedProduct","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Share","labelPlural":"Serialized Product Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductShare/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductShare/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jM","label":"Serialized + Product Transaction","labelPlural":"Serialized Product Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProductTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe","layouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProductTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction Feed","labelPlural":"Serialized Product Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction History","labelPlural":"Serialized Product Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08p","label":"Service + Appointment","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Share","labelPlural":"Service Appointment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Status Value","labelPlural":"Service Appointment Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"810","label":"Service + Contract","labelPlural":"Service Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceContract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceContract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceContract/describe","quickActions":"/services/data/v58.0/sobjects/ServiceContract/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceContract/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceContract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Change Event","labelPlural":"Service Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Feed","labelPlural":"Service Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract History","labelPlural":"Service Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceContract","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Share","labelPlural":"Service Contract Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cr","label":"Service + Crew","labelPlural":"Service Crews","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrew","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrew/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrew/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrew/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrew"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Change Event","labelPlural":"Service Crew Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Feed","labelPlural":"Service Crew Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew History","labelPlural":"Service Crew History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cm","label":"Service + Crew Member","labelPlural":"Service Crew Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrewMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrewMember/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrewMember/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrewMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Change Event","labelPlural":"Service Crew Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Feed","labelPlural":"Service Crew Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member History","labelPlural":"Service Crew Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceCrew","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Share","labelPlural":"Service Crew Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SR","label":"Service + Report","labelPlural":"Service Reports","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReport/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReport/describe","sobject":"/services/data/v58.0/sobjects/ServiceReport"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Change Event","labelPlural":"Service Report Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report History","labelPlural":"Service Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SL","label":"Service + Report Layout","labelPlural":"Service Report Layouts","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ServiceReportLayout","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayout/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportLayout/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayout"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReportLayout","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Layout Change Event","labelPlural":"Service Report Layout Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportLayoutChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hn","label":"Service + Resource","labelPlural":"Service Resources","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResource/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResource/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hy","label":"Resource + Capacity","labelPlural":"Resource Capacities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceCapacity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourceCapacity/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Change Event","labelPlural":"Resource Capacity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Feed","labelPlural":"Resource Capacity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity History","labelPlural":"Resource Capacity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Change Event","labelPlural":"Service Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Feed","labelPlural":"Service Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource History","labelPlural":"Service Resource History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0l6","label":"Service + Resource Preference","labelPlural":"Service Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreference/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourcePreference/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreference"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ServiceResourcePreference not found in section + StandardFeedLabel","labelPlural":"__MISSING LABEL__ PropertyFile - val ServiceResourcePreference + not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference History","labelPlural":"Service Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResourcePreference","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference Share","labelPlural":"Service Resource Preference Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResource","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Share","labelPlural":"Service Resource Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hv","label":"Service + Resource Skill","labelPlural":"Service Resource Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe","layouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Change Event","labelPlural":"Service Resource Skill Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Feed","labelPlural":"Service Resource Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill History","labelPlural":"Service Resource Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9gd","label":"Service + Setup Provisioning","labelPlural":"Service Setup Provisionings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceSetupProvisioning","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/{ID}","describe":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/describe","sobject":"/services/data/v58.0/sobjects/ServiceSetupProvisioning"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hh","label":"Service + Territory","labelPlural":"Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritory/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritory/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritory/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Change Event","labelPlural":"Service Territory Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Feed","labelPlural":"Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory History","labelPlural":"Service Territory History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1Sl","label":"Service + Territory Location","labelPlural":"Service Territory Locations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Change Event","labelPlural":"Service Territory Location + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Feed","labelPlural":"Service Territory Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Territory + Location History","labelPlural":"Territory Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hu","label":"Service + Territory Member","labelPlural":"Service Territory Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritoryMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Change Event","labelPlural":"Service Territory Member Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Feed","labelPlural":"Service Territory Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member History","labelPlural":"Service Territory Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceTerritory","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Share","labelPlural":"Service Territory Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zh","label":"Session + Hijacking Event","labelPlural":"Session Hijacking Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SessionHijackingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SessionHijackingEvent/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zj","label":"Session + Hijacking Event Store","labelPlural":"Session Hijacking Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SessionHijackingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/SessionHijackingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SessionHijackingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Session + Hijacking Event Store Feed","labelPlural":"Session Hijacking Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Pa","label":"Session + Permission Set Activation","labelPlural":"Session Permission Set Activations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SessionPermSetActivation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionPermSetActivation/{ID}","describe":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe","layouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionPermSetActivation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Ys","label":"Setup + Assistant Step","labelPlural":"Setup Assistant Steps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAssistantStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAssistantStep/{ID}","describe":"/services/data/v58.0/sobjects/SetupAssistantStep/describe","sobject":"/services/data/v58.0/sobjects/SetupAssistantStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ym","label":"Setup + Audit Trail Entry","labelPlural":"Setup Audit Trail Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAuditTrail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAuditTrail/{ID}","describe":"/services/data/v58.0/sobjects/SetupAuditTrail/describe","sobject":"/services/data/v58.0/sobjects/SetupAuditTrail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J0","label":"Setup + Entity Access","labelPlural":"Setup Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/SetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/SetupEntityAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m01","label":"Setup + Configuration Data","labelPlural":"Setup Configuration Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Configuration_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m02","label":"Setup + Connection Data","labelPlural":"Setup Connection Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Connection_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Data__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Data","labelPlural":"Change Event: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Setup_Data__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Setup Data","labelPlural":"Share: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__Share/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Data__Share/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1T","label":"Setup + Data","labelPlural":"Setup Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Data__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Setup_Data__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Data__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Data__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Settings__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Settings","labelPlural":"Change Event: Setup Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1U","label":"Setup + Settings","labelPlural":"Setup Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__c/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Settings__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Settings__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Settings__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Settings__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0a0","label":"Shift","labelPlural":"Shifts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shift","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shift/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shift/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shift/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shift/describe","quickActions":"/services/data/v58.0/sobjects/Shift/quickActions","layouts":"/services/data/v58.0/sobjects/Shift/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shift"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Change Event","labelPlural":"Shift Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Feed","labelPlural":"Shift Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + History","labelPlural":"Shift History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w1","label":"Shift + Pattern","labelPlural":"Shift Patterns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPattern","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPattern/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShiftPattern/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPattern/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPattern"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Change Event","labelPlural":"Shift Pattern Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w2","label":"Shift + Pattern Entry","labelPlural":"Shift Pattern Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPatternEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntry/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPatternEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Change Event","labelPlural":"Shift Pattern Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Feed","labelPlural":"Shift Pattern Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry History","labelPlural":"Shift Pattern Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Feed","labelPlural":"Shift Pattern Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern History","labelPlural":"Shift Pattern History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftPattern","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Share","labelPlural":"Shift Pattern Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shift","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Share","labelPlural":"Shift Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Status Value","labelPlural":"Shift Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftStatus/{ID}","describe":"/services/data/v58.0/sobjects/ShiftStatus/describe","sobject":"/services/data/v58.0/sobjects/ShiftStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iJ","label":"Shift + Template","labelPlural":"Shift Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplate/describe","layouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Change Event","labelPlural":"Shift Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Share","labelPlural":"Shift Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OB","label":"Shipment","labelPlural":"Shipments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shipment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shipment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shipment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shipment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shipment/describe","quickActions":"/services/data/v58.0/sobjects/Shipment/quickActions","layouts":"/services/data/v58.0/sobjects/Shipment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shipment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Change Event","labelPlural":"Shipment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShipmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShipmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShipmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Feed","labelPlural":"Shipment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + History","labelPlural":"Shipment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ob","label":"Shipment + Item","labelPlural":"Shipment Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ShipmentItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShipmentItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShipmentItem/describe","quickActions":"/services/data/v58.0/sobjects/ShipmentItem/quickActions","layouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShipmentItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shipment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Share","labelPlural":"Shipment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentShare/describe","sobject":"/services/data/v58.0/sobjects/ShipmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DM","label":"Site","labelPlural":"Sites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Site","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Site/{ID}","describe":"/services/data/v58.0/sobjects/Site/describe","sobject":"/services/data/v58.0/sobjects/Site"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GV","label":"Site + Detail","labelPlural":"Site Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteDetail/{ID}","describe":"/services/data/v58.0/sobjects/SiteDetail/describe","sobject":"/services/data/v58.0/sobjects/SiteDetail"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site","labelPlural":"Site","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteFeed/{ID}","describe":"/services/data/v58.0/sobjects/SiteFeed/describe","sobject":"/services/data/v58.0/sobjects/SiteFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site + History","labelPlural":"Site History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteHistory/{ID}","describe":"/services/data/v58.0/sobjects/SiteHistory/describe","sobject":"/services/data/v58.0/sobjects/SiteHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xs","label":"Trusted + Domains for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteIframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H0","label":"Site + Redirect Mapping","labelPlural":"Site Redirect Mapping","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteRedirectMapping","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteRedirectMapping/{ID}","describe":"/services/data/v58.0/sobjects/SiteRedirectMapping/describe","sobject":"/services/data/v58.0/sobjects/SiteRedirectMapping"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C5","label":"Skill","labelPlural":"Skills","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Skill","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Skill/{ID}","describe":"/services/data/v58.0/sobjects/Skill/describe","sobject":"/services/data/v58.0/sobjects/Skill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Skill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Change Event","labelPlural":"Skill Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hx","label":"Skill + Requirement","labelPlural":"Skill Requirements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SkillRequirement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SkillRequirement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SkillRequirement/describe","layouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/layouts","sobject":"/services/data/v58.0/sobjects/SkillRequirement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Change Event","labelPlural":"Skill Requirement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Feed","labelPlural":"Skill Requirement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementFeed/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementFeed/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement History","labelPlural":"Skill Requirement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementHistory/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementHistory/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"13B","label":"Skill + Type","labelPlural":"Skill Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillType/{ID}","describe":"/services/data/v58.0/sobjects/SkillType/describe","sobject":"/services/data/v58.0/sobjects/SkillType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"552","label":"Entitlement + Process","labelPlural":"Entitlement Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SlaProcess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SlaProcess/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SlaProcess/{ID}","describe":"/services/data/v58.0/sobjects/SlaProcess/describe","layouts":"/services/data/v58.0/sobjects/SlaProcess/describe/layouts","sobject":"/services/data/v58.0/sobjects/SlaProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"501","label":"Solution","labelPlural":"Solutions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Solution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Solution/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Solution/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Solution/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Solution/describe","layouts":"/services/data/v58.0/sobjects/Solution/describe/layouts","sobject":"/services/data/v58.0/sobjects/Solution"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Feed","labelPlural":"Solution Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SolutionFeed/describe","sobject":"/services/data/v58.0/sobjects/SolutionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + History","labelPlural":"Solution History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SolutionHistory/describe","sobject":"/services/data/v58.0/sobjects/SolutionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Status Value","labelPlural":"Solution Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionStatus/{ID}","describe":"/services/data/v58.0/sobjects/SolutionStatus/describe","sobject":"/services/data/v58.0/sobjects/SolutionStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xv","label":"Source + Change Notification","labelPlural":"Source Change Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SourceChangeNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SourceChangeNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/SourceChangeNotification/eventSchema","describe":"/services/data/v58.0/sobjects/SourceChangeNotification/describe","sobject":"/services/data/v58.0/sobjects/SourceChangeNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ST","label":"Stamp","labelPlural":"Stamps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stamp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stamp/{ID}","describe":"/services/data/v58.0/sobjects/Stamp/describe","sobject":"/services/data/v58.0/sobjects/Stamp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SA","label":"Stamp + Assignment","labelPlural":"Stamp Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StampAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StampAssignment/{ID}","describe":"/services/data/v58.0/sobjects/StampAssignment/describe","sobject":"/services/data/v58.0/sobjects/StampAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"081","label":"Static + Resource","labelPlural":"Static Resources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"StaticResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StaticResource/{ID}","describe":"/services/data/v58.0/sobjects/StaticResource/describe","sobject":"/services/data/v58.0/sobjects/StaticResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0M6","label":"Streaming + Channel","labelPlural":"Streaming Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"StreamingChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/StreamingChannel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/StreamingChannel/describe","layouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/layouts","push":"/services/data/v58.0/sobjects/StreamingChannel/{ID}/push","sobject":"/services/data/v58.0/sobjects/StreamingChannel"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"StreamingChannel","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Streaming + Channel Share","labelPlural":"Streaming Channel Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StreamingChannelShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StreamingChannelShare/{ID}","describe":"/services/data/v58.0/sobjects/StreamingChannelShare/describe","sobject":"/services/data/v58.0/sobjects/StreamingChannelShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Stripe_Connection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Stripe_Connection","labelPlural":"Change Event: Stripe_Connection","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1V","label":"Stripe_Connection","labelPlural":"Stripe_Connection","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__c/{ID}","describe":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe","quickActions":"/services/data/v58.0/sobjects/Stripe_Connection__c/quickActions","layouts":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sW","label":"Swarm","labelPlural":"Swarms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Swarm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Swarm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Swarm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Swarm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Swarm/describe","quickActions":"/services/data/v58.0/sobjects/Swarm/quickActions","layouts":"/services/data/v58.0/sobjects/Swarm/describe/layouts","sobject":"/services/data/v58.0/sobjects/Swarm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Feed","labelPlural":"Swarm Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + History","labelPlural":"Swarm History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sR","label":"Swarm + Member","labelPlural":"Swarm Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SwarmMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SwarmMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SwarmMember/describe","quickActions":"/services/data/v58.0/sobjects/SwarmMember/quickActions","layouts":"/services/data/v58.0/sobjects/SwarmMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/SwarmMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Feed","labelPlural":"Swarm Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member History","labelPlural":"Swarm Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SwarmMember","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Share","labelPlural":"Swarm Member Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Swarm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Share","labelPlural":"Swarm Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sync_Record__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sync Record","labelPlural":"Change Event: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Sync_Record__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Sync Record","labelPlural":"Share: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__Share/{ID}","describe":"/services/data/v58.0/sobjects/Sync_Record__Share/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1W","label":"Sync + Record","labelPlural":"Sync Management","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sync_Record__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Sync_Record__c/describe","quickActions":"/services/data/v58.0/sobjects/Sync_Record__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sync_Record__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0KD","label":"Tab + Definition","labelPlural":"Tab Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TabDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TabDefinition/{ID}","describe":"/services/data/v58.0/sobjects/TabDefinition/describe","sobject":"/services/data/v58.0/sobjects/TabDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00T","label":"Task","labelPlural":"Tasks","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Task","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Task/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Task/{ID}","describe":"/services/data/v58.0/sobjects/Task/describe","quickActions":"/services/data/v58.0/sobjects/Task/quickActions","layouts":"/services/data/v58.0/sobjects/Task/describe/layouts","sobject":"/services/data/v58.0/sobjects/Task"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Change Event","labelPlural":"Task Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TaskChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TaskChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TaskChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Feed","labelPlural":"Task Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskFeed/{ID}","describe":"/services/data/v58.0/sobjects/TaskFeed/describe","sobject":"/services/data/v58.0/sobjects/TaskFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Priority Value","labelPlural":"Task Priority Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskPriority","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskPriority/{ID}","describe":"/services/data/v58.0/sobjects/TaskPriority/describe","sobject":"/services/data/v58.0/sobjects/TaskPriority"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Status Value","labelPlural":"Task Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskStatus/{ID}","describe":"/services/data/v58.0/sobjects/TaskStatus/describe","sobject":"/services/data/v58.0/sobjects/TaskStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UT","label":"Tenant + Usage Entitlement","labelPlural":"Tenant Usage Entitlements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"TenantUsageEntitlement","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TenantUsageEntitlement/{ID}","describe":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe","layouts":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/TenantUsageEntitlement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hd","label":"Test + Suite Membership","labelPlural":"Test Suite Memberships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TestSuiteMembership","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TestSuiteMembership/{ID}","describe":"/services/data/v58.0/sobjects/TestSuiteMembership/describe","sobject":"/services/data/v58.0/sobjects/TestSuiteMembership"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jr","label":"Third + Party Account Link","labelPlural":"Third Party Account Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThirdPartyAccountLink","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/{ID}","describe":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/describe","sobject":"/services/data/v58.0/sobjects/ThirdPartyAccountLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hY","label":"Threat + Detection Feedback","labelPlural":"Threat Detection Feedback","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ThreatDetectionFeedback","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe","quickActions":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/quickActions","layouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/layouts","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedback"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ThreatDetectionFeedback","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Threat + Detection Feedback Feed","labelPlural":"Threat Detection Feedback Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThreatDetectionFeedbackFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/describe","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ts","label":"Time + Sheet","labelPlural":"Time Sheets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheet/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheet/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheet/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheet"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Change Event","labelPlural":"Time Sheet Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1te","label":"Time + Sheet Entry","labelPlural":"Time Sheet Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheetEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheetEntry/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheetEntry/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheetEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Change Event","labelPlural":"Time Sheet Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Feed","labelPlural":"Time Sheet Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry History","labelPlural":"Time Sheet Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Feed","labelPlural":"Time Sheet Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet History","labelPlural":"Time Sheet History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TimeSheet","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Share","labelPlural":"Time Sheet Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetShare/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetShare/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gj","label":"Time + Slot","labelPlural":"Time Slots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/TimeSlot/describe","layouts":"/services/data/v58.0/sobjects/TimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSlot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Slot Change Event","labelPlural":"Time Slot Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSlotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSlotChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jz","label":"Goal","labelPlural":"Goals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoal","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoal/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoal/describe","sobject":"/services/data/v58.0/sobjects/TodayGoal"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TodayGoal","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Goal + Share","labelPlural":"Goal Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoalShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoalShare/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoalShare/describe","sobject":"/services/data/v58.0/sobjects/TodayGoalShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TO","label":"Topic","labelPlural":"Topics","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Topic","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Topic/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Topic/{ID}","describe":"/services/data/v58.0/sobjects/Topic/describe","layouts":"/services/data/v58.0/sobjects/Topic/describe/layouts","sobject":"/services/data/v58.0/sobjects/Topic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FT","label":"Topic + Assignment","labelPlural":"Topic Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicAssignment/{ID}","describe":"/services/data/v58.0/sobjects/TopicAssignment/describe","sobject":"/services/data/v58.0/sobjects/TopicAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Topic","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Topic + Feed","labelPlural":"Topic Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicFeed/{ID}","describe":"/services/data/v58.0/sobjects/TopicFeed/describe","sobject":"/services/data/v58.0/sobjects/TopicFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0te","label":"Topic + User Event","labelPlural":"Topic User Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicUserEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicUserEvent/{ID}","describe":"/services/data/v58.0/sobjects/TopicUserEvent/describe","sobject":"/services/data/v58.0/sobjects/TopicUserEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0NI","label":"Transaction + Security Policy","labelPlural":"Transaction Security Policies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TransactionSecurityPolicy","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/{ID}","describe":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/describe","sobject":"/services/data/v58.0/sobjects/TransactionSecurityPolicy"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01h","label":"Language + Translation","labelPlural":"Language Translation","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Translation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Translation/{ID}","describe":"/services/data/v58.0/sobjects/Translation/describe","sobject":"/services/data/v58.0/sobjects/Translation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5pL","label":"Travel + Mode","labelPlural":"Travel Modes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TravelMode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TravelMode/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TravelMode/describe","quickActions":"/services/data/v58.0/sobjects/TravelMode/quickActions","layouts":"/services/data/v58.0/sobjects/TravelMode/describe/layouts","sobject":"/services/data/v58.0/sobjects/TravelMode"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TravelMode","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Feed","labelPlural":"Travel Mode Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeFeed/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeFeed/describe","sobject":"/services/data/v58.0/sobjects/TravelModeFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TravelMode","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Share","labelPlural":"Travel Mode Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeShare/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeShare/describe","sobject":"/services/data/v58.0/sobjects/TravelModeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gp","label":"Ui + Formula Criterion","labelPlural":"Ui Formula Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaCriterion/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09t","label":"Ui + Formula Rule","labelPlural":"Ui Formula Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaRule/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaRule/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Undecided + Event Relation","labelPlural":"Undecided Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UndecidedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UndecidedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/UndecidedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/UndecidedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hE","label":"Unit + of Measure","labelPlural":"Units of Measure","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UnitOfMeasure","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasure/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UnitOfMeasure/describe","layouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/layouts","sobject":"/services/data/v58.0/sobjects/UnitOfMeasure"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UnitOfMeasure","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Unit + of Measure Share","labelPlural":"Unit of Measure Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UnitOfMeasureShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasureShare/{ID}","describe":"/services/data/v58.0/sobjects/UnitOfMeasureShare/describe","sobject":"/services/data/v58.0/sobjects/UnitOfMeasureShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uw","label":"URI + Event","labelPlural":"URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEvent/{ID}","describe":"/services/data/v58.0/sobjects/UriEvent/describe","sobject":"/services/data/v58.0/sobjects/UriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ux","label":"URI + Event Stream ","labelPlural":"URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/UriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/UriEventStream/describe","sobject":"/services/data/v58.0/sobjects/UriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"005","label":"User","labelPlural":"Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"User","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/User/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/User/{ID}","namedLayouts":"/services/data/v58.0/sobjects/User/describe/namedLayouts/{LayoutName}","passwordUtilities":"/services/data/v58.0/sobjects/User/{ID}/password","describe":"/services/data/v58.0/sobjects/User/describe","quickActions":"/services/data/v58.0/sobjects/User/quickActions","layouts":"/services/data/v58.0/sobjects/User/describe/layouts","sobject":"/services/data/v58.0/sobjects/User"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ds","label":"Last + Used App","labelPlural":"Last Used App","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppInfo/{ID}","describe":"/services/data/v58.0/sobjects/UserAppInfo/describe","sobject":"/services/data/v58.0/sobjects/UserAppInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nw","label":"UserAppMenuCustomization","labelPlural":"UserAppMenuCustomizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomization/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomization/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomization"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserAppMenuCustomization","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"UserAppMenuCustomization + Share","labelPlural":"UserAppMenuCustomization Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomizationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07p","label":"Application","labelPlural":"Applications","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UserAppMenuItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuItem/describe","layouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserAppMenuItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Change Event","labelPlural":"User Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/UserChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/UserChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/UserChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UV","label":"User + Email Preferred Person","labelPlural":"User Email Preferred People","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPerson","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPerson"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserEmailPreferredPerson","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Email Preferred Person Share","labelPlural":"User Email Preferred Person Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPersonShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07u","label":"User + Entity Access","labelPlural":"User Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserEntityAccess"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Feed","labelPlural":"User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFeed/{ID}","describe":"/services/data/v58.0/sobjects/UserFeed/describe","sobject":"/services/data/v58.0/sobjects/UserFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fp","label":"User + Field Access","labelPlural":"User Field Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFieldAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFieldAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserFieldAccess/describe","sobject":"/services/data/v58.0/sobjects/UserFieldAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"100","label":"User + License","labelPlural":"User Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserLicense/describe","sobject":"/services/data/v58.0/sobjects/UserLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Na","label":"User + List View","labelPlural":"User List View","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListView/{ID}","describe":"/services/data/v58.0/sobjects/UserListView/describe","sobject":"/services/data/v58.0/sobjects/UserListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JU","label":"User + List View Criteria","labelPlural":"User List View Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListViewCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListViewCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UserListViewCriterion/describe","sobject":"/services/data/v58.0/sobjects/UserListViewCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yw","label":"User + Login","labelPlural":"User Login","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLogin/{ID}","describe":"/services/data/v58.0/sobjects/UserLogin/describe","sobject":"/services/data/v58.0/sobjects/UserLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"051","label":"User + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User + Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User + Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User + Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User + Provisioning Account Staging","labelPlural":"User Provisioning Account Stagings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccountStaging","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccountStaging/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccountStaging/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccountStaging"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HX","label":"User + Provisioning Mock Target","labelPlural":"User Provisioning Mock Targets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvMockTarget","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvMockTarget/{ID}","describe":"/services/data/v58.0/sobjects/UserProvMockTarget/describe","sobject":"/services/data/v58.0/sobjects/UserProvMockTarget"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Je","label":"User + Provisioning Config","labelPlural":"User Provisioning Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningConfig/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningConfig/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hs","label":"User + Provisioning Log","labelPlural":"User Provisioning Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningLog/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningLog/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HP","label":"User + Provisioning Request","labelPlural":"User Provisioning Requests","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe","layouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserProvisioningRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Provisioning Request Share","labelPlural":"User Provisioning Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Record Access","labelPlural":"User Record Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserRecordAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserRecordAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserRecordAccess/describe","sobject":"/services/data/v58.0/sobjects/UserRecordAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00E","label":"Role","labelPlural":"Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserRole/{ID}","describe":"/services/data/v58.0/sobjects/UserRole/describe","layouts":"/services/data/v58.0/sobjects/UserRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g2","label":"User + Setup Entity Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserSetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserSetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserSetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserSetupEntityAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"User","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0N2","label":"User + Share","labelPlural":"User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserShare/{ID}","describe":"/services/data/v58.0/sobjects/UserShare/describe","sobject":"/services/data/v58.0/sobjects/UserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qt","label":"Identity + Verification History","labelPlural":"Identity Verification History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VerificationHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VerificationHistory/{ID}","describe":"/services/data/v58.0/sobjects/VerificationHistory/describe","sobject":"/services/data/v58.0/sobjects/VerificationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OP","label":"Visualforce + Access Metric","labelPlural":"Visualforce Access Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VisualforceAccessMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/{ID}","describe":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/describe","sobject":"/services/data/v58.0/sobjects/VisualforceAccessMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"083","label":"Vote","labelPlural":"Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Vote","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Vote/{ID}","describe":"/services/data/v58.0/sobjects/Vote/describe","sobject":"/services/data/v58.0/sobjects/Vote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4V3","label":"Warranty + Term","labelPlural":"Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WarrantyTerm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/WarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/WarrantyTerm"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Change Event","labelPlural":"Warranty Term Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Feed","labelPlural":"Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term History","labelPlural":"Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WarrantyTerm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Share","labelPlural":"Warranty Term Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermShare/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermShare/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00b","label":"Custom + Button or Link","labelPlural":"Custom Buttons or Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WebLink","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WebLink/{ID}","describe":"/services/data/v58.0/sobjects/WebLink/describe","sobject":"/services/data/v58.0/sobjects/WebLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W5","label":"Access","labelPlural":"Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccess/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccess/describe","sobject":"/services/data/v58.0/sobjects/WorkAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkAccess","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Access + Share","labelPlural":"Access Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccessShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccessShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccessShare/describe","sobject":"/services/data/v58.0/sobjects/WorkAccessShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W2","label":"Badge + Received","labelPlural":"Badges Received","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadge","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadge/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadge/describe","layouts":"/services/data/v58.0/sobjects/WorkBadge/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadge"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W1","label":"Badge","labelPlural":"Badges","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadgeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/WorkBadgeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Feed","labelPlural":"Badge Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + History","labelPlural":"Badge History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkBadgeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work + Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order History","labelPlural":"Work Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1WL","label":"Work + Order Line Item","labelPlural":"Work Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/approvalLayouts","workOrderLineItemRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}/suggestedArticles","describe":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/layouts","workOrderLineItemArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/suggestedArticles","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Change Event","labelPlural":"Work Order Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Feed","labelPlural":"Work Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item History","labelPlural":"Work Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Status Value","labelPlural":"Work Order Line Item Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Share","labelPlural":"Work Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderShare/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Status Value","labelPlural":"Work Order Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gq","label":"Work + Plan","labelPlural":"Work Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlan/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlan/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Change Event","labelPlural":"Work Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Feed","labelPlural":"Work Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan History","labelPlural":"Work Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gr","label":"Work + Plan Selection Rule","labelPlural":"Work Plan Selection Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanSelectionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Change Event","labelPlural":"Work Plan Selection Rule + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Feed","labelPlural":"Work Plan Selection Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule History","labelPlural":"Work Plan Selection Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanSelectionRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Share","labelPlural":"Work Plan Selection Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Share","labelPlural":"Work Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7Iy","label":"Work + Plan Template","labelPlural":"Work Plan Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Change Event","labelPlural":"Work Plan Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8xu","label":"Work + Plan Template Entry","labelPlural":"Work Plan Template Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplateEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Change Event","labelPlural":"Work Plan Template Entry + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Feed","labelPlural":"Work Plan Template Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry History","labelPlural":"Work Plan Template Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Feed","labelPlural":"Work Plan Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template History","labelPlural":"Work Plan Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Share","labelPlural":"Work Plan Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hF","label":"Work + Step","labelPlural":"Work Steps","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStep/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStep/describe","quickActions":"/services/data/v58.0/sobjects/WorkStep/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStep/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStep"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Change Event","labelPlural":"Work Step Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Feed","labelPlural":"Work Step Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step History","labelPlural":"Work Step History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Status Value","labelPlural":"Work Step Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkStepStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4L0","label":"Work + Step Template","labelPlural":"Work Step Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStepTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStepTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkStepTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStepTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Change Event","labelPlural":"Work Step Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Feed","labelPlural":"Work Step Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template History","labelPlural":"Work Step Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkStepTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Share","labelPlural":"Work Step Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W0","label":"Thanks","labelPlural":"Thanks","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"WorkThanks","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanks/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanks/describe","layouts":"/services/data/v58.0/sobjects/WorkThanks/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkThanks"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkThanks","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Thanks + Share","labelPlural":"Thanks Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkThanksShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanksShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanksShare/describe","sobject":"/services/data/v58.0/sobjects/WorkThanksShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08q","label":"Work + Type","labelPlural":"Work Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkType/describe","quickActions":"/services/data/v58.0/sobjects/WorkType/quickActions","layouts":"/services/data/v58.0/sobjects/WorkType/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkType"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Change Event","labelPlural":"Work Type Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Feed","labelPlural":"Work Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VS","label":"Work + Type Group","labelPlural":"Work Type Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroup/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroup/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Feed","labelPlural":"Work Type Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group History","labelPlural":"Work Type Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Wz","label":"Work + Type Group Member","labelPlural":"Work Type Group Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroupMember/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member Feed","labelPlural":"Work Type Group Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member History","labelPlural":"Work Type Group Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkTypeGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:47 GMT + Set-Cookie: + - BrowserId=nF1yZWxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:47 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=460/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:46 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU"},"Id":"a0z8N000000zBcLQAU","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"Q-00253","CreatedDate":"2023-10-16T18:12:40.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:46.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:46.000+0000","LastActivityDate":null,"LastViewedDate":"2023-10-16T18:12:46.000+0000","LastReferencedDate":"2023-10-16T18:12:46.000+0000","SBQQ__Account__c":"0018N00000JbPIRQA3","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__BillingPostalCode__c":null,"SBQQ__BillingState__c":null,"SBQQ__BillingStreet__c":null,"SBQQ__ConsumptionRateOverride__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__CustomerDiscount__c":null,"SBQQ__DefaultTemplate__c":null,"SBQQ__DeliveryMethod__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__Distributor__c":null,"SBQQ__DocumentStatus__c":null,"SBQQ__EmailTemplateId__c":null,"SBQQ__EndDate__c":null,"SBQQ__FirstSegmentTermEndDate__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__Introduction__c":null,"SBQQ__Key__c":null,"SBQQ__LastCalculatedOn__c":null,"SBQQ__LastSavedOn__c":"2023-10-16T18:12:46.000+0000","SBQQ__LineItemsGrouped__c":false,"SBQQ__LineItemsPrinted__c":true,"SBQQ__MarkupRate__c":null,"SBQQ__MasterContract__c":null,"SBQQ__MasterEvergreenContract__c":null,"SBQQ__Notes__c":null,"SBQQ__Opportunity2__c":"0068N000006QZRvQAO","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s8N000002d0dzQAA","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__PrimaryContact__c":"0038N00000GH2wxQAD","SBQQ__Primary__c":true,"SBQQ__ProrationDayOfMonth__c":null,"SBQQ__QuoteLanguage__c":null,"SBQQ__QuoteProcessId__c":null,"SBQQ__QuoteTemplateId__c":null,"SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-10-16","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":24.0,"SBQQ__TargetCustomerAmount__c":null,"SBQQ__Type__c":"Quote","SBQQ__Unopened__c":true,"SBQQ__WatermarkShown__c":false,"SBQQ__LineItemCount__c":2.0,"SBQQ__AdditionalDiscountAmount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__DaysQuoteOpen__c":0.0,"SBQQ__ExpirationDate__c":"2023-11-15","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":2880.0,"SBQQ__ListAmount__c":2880.0,"SBQQ__NetAmount__c":2880.0,"SBQQ__RegularAmount__c":2880.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z8N000000zBcLQAU%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:47 GMT + Set-Cookie: + - BrowserId=nH95k2xPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:47 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=466/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgcQAG"},"Id":"a0v8N000002TJgcQAG"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgdQAG"},"Id":"a0v8N000002TJgdQAG"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgcQAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:48 GMT + Set-Cookie: + - BrowserId=nJuNamxPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:48 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=459/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:46 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgcQAG"},"Id":"a0v8N000002TJgcQAG","IsDeleted":false,"Name":"QL-0000576","CreatedDate":"2023-10-16T18:12:46.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:46.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:46.000+0000","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihsUAA","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2024-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MPQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNuQAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479963671","SBQQ__SegmentLabel__c":"Year 1","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2024-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgdQAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:48 GMT + Set-Cookie: + - BrowserId=nLz4J2xPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:48 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=457/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:46 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgdQAG"},"Id":"a0v8N000002TJgdQAG","IsDeleted":false,"Name":"QL-0000577","CreatedDate":"2023-10-16T18:12:46.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:46.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:46.000+0000","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihsUAA","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2025-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MPQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNuQAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479963671","SBQQ__SegmentLabel__c":"Year 2","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2024-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2025-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2024-10-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + body: + encoding: UTF-8 + string: '{"Name__c":"Twenty-five percent off coupon","Amount_Off__c":null,"Duration__c":"once","Percent_Off__c":25}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:48 GMT + Set-Cookie: + - BrowserId=nONESmxPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:48 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=458/5000000 + Location: + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R8N000000vglBUAQ" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a1R8N000000vglBUAQ","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + body: + encoding: UTF-8 + string: '{"Name__c":"$10 off coupon","Amount_Off__c":10,"Duration__c":"once"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:48 GMT + Set-Cookie: + - BrowserId=nQ0TFWxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:48 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=461/5000000 + Location: + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R8N000000vglGUAQ" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a1R8N000000vglGUAQ","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + body: + encoding: UTF-8 + string: '{"Quote_Line__c":"a0v8N000002TJgcQAG","Quote_Stripe_Coupon__c":"a1R8N000000vglBUAQ"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:49 GMT + Set-Cookie: + - BrowserId=nSu_j2xPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:49 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=458/5000000 + Location: + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P8N000000ZjylUAC" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a1P8N000000ZjylUAC","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c + body: + encoding: UTF-8 + string: '{"Quote__c":"a0z8N000000zBcLQAU","Quote_Stripe_Coupon__c":"a1R8N000000vglGUAQ"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:49 GMT + Set-Cookie: + - BrowserId=naSYGWxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:49 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=459/5000000 + Location: + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q8N000000OYAiUAO" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a1Q8N000000OYAiUAO","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU + body: + encoding: UTF-8 + string: '{"SBQQ__Ordered__c":true}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:50 GMT + Set-Cookie: + - BrowserId=nfLfkWxPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:50 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=458/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU/SBQQ__Orders__r + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:51 GMT + Set-Cookie: + - BrowserId=nttrIGxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:51 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=456/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8018N00000032c9QAA"},"Id":"8018N00000032c9QAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPIRQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRvQAO","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00000306","TotalAmount":2880.0,"CreatedDate":"2023-10-16T18:12:50.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:51.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c9QAA + body: + encoding: UTF-8 + string: '{"Status":"Activated"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:52 GMT + Set-Cookie: + - BrowserId=nvvDtGxPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=460/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c9QAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:52 GMT + Set-Cookie: + - BrowserId=n29GiWxPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=459/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:52 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c9QAA"},"Id":"8018N00000032c9QAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPIRQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRvQAO","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:12:52.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000306","TotalAmount":2880.0,"CreatedDate":"2023-10-16T18:12:50.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:52.000+0000","LastViewedDate":"2023-10-16T18:12:52.000+0000","LastReferencedDate":"2023-10-16T18:12:52.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c9QAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:52 GMT + Set-Cookie: + - BrowserId=n4mFe2xPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=467/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:52 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c9QAA"},"Id":"8018N00000032c9QAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPIRQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRvQAO","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:12:52.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000306","TotalAmount":2880.0,"CreatedDate":"2023-10-16T18:12:50.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:52.000+0000","LastViewedDate":"2023-10-16T18:12:52.000+0000","LastReferencedDate":"2023-10-16T18:12:52.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + body: + encoding: UTF-8 + string: '{"order_ids":["8018N00000032c9QAA"]}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:53 GMT + Set-Cookie: + - BrowserId=n6Q5NWxPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:53 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0038N00000GH2wxQAD"},"Id":"0038N00000GH2wxQAD","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"order_with_mdq_licensed_product_and_discounts_2@example.com","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:39.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:39.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:39.000+0000","LastViewedDate":"2023-10-16T18:12:39.000+0000","LastReferencedDate":"2023-10-16T18:12:39.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0038N00000GH2wxQAD","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRvQAO"},"Id":"0068N000006QZRvQAO","IsDeleted":false,"AccountId":"0018N00000JbPIRQA3","IsPrivate":false,"Name":"REST + Opportunity 2023-10-16 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-10-16","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:39.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:40.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:40.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-10-16T18:12:39.000+0000","LastReferencedDate":"2023-10-16T18:12:39.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000zBcLQAU","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0018N00000JbPIRQA3"},"Id":"0018N00000JbPIRQA3","IsDeleted":false,"Name":"REST + Account 2023-10-16 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0018N00000JbPIRQA3","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:39.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:39.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:39.000+0000","LastViewedDate":"2023-10-16T18:12:39.000+0000","LastReferencedDate":"2023-10-16T18:12:39.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["0018N00000JbPIRQA3"],"Opportunities":["0068N000006QZRvQAO"],"Contacts":["0038N00000GH2wxQAD"],"SBQQ__RegularAmount__c":2880.00,"SBQQ__NetAmount__c":2880.00,"SBQQ__ListAmount__c":2880.00,"SBQQ__CustomerAmount__c":2880.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-11-15","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":2,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":true,"SBQQ__Type__c":"Quote","SBQQ__SubscriptionTerm__c":24,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-10-16","SBQQ__ShippingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0038N00000GH2wxQAD","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__PriceBook__c":"01s8N000002d0dzQAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0068N000006QZRvQAO","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-10-16T18:12:50.000+0000","SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__Account__c":"0018N00000JbPIRQA3","LastReferencedDate":"2023-10-16T18:12:50.000+0000","LastViewedDate":"2023-10-16T18:12:50.000+0000","SystemModstamp":"2023-10-16T18:12:50.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:50.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:40.000+0000","Name":"Q-00253","IsDeleted":false,"OwnerId":"0058N000004zYG5QAM","Id":"a0z8N000000zBcLQAU","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcLQAU","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t8N000003DfNuQAK"},"Id":"01t8N000003DfNuQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:12:40.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:40.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:41.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BillingFrequency__c":"Monthly","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MPQAY"},"Id":"01u8N000003e0MPQAY","Name":"REST + Product2 2023-10-16 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNuQAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-10-16T18:12:41.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:41.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:41.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgdQAG"},"Id":"a0v8N000002TJgdQAG","IsDeleted":false,"Name":"QL-0000577","CreatedDate":"2023-10-16T18:12:46.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:46.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:46.000+0000","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":1440.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihsUAA","SBQQ__EndDate__c":"2025-10-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MPQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNuQAK","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":1440.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":2,"SBQQ__SegmentKey__c":"1697479963671","SBQQ__SegmentLabel__c":"Year 2","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2024-10-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2025-10-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-10-16","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":1440.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":1440.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":1440.00,"SBQQ__PackageTotal__c":1440.00,"SBQQ__PartnerTotal__c":1440.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgcQAG"},"Id":"a0v8N000002TJgcQAG","IsDeleted":false,"Name":"QL-0000576","CreatedDate":"2023-10-16T18:12:46.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:46.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:46.000+0000","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":1440.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihsUAA","SBQQ__EndDate__c":"2024-10-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MPQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNuQAK","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":1440.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":1,"SBQQ__SegmentKey__c":"1697479963671","SBQQ__SegmentLabel__c":"Year 1","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2024-10-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":1440.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":1440.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":1440.00,"SBQQ__PackageTotal__c":1440.00,"SBQQ__PartnerTotal__c":1440.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"PricebookEntries":[],"Products":["01t8N000003DfNuQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":1440.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479963671","SBQQ__SegmentIndex__c":2,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJgdQAG","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihsUAA","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000218","SystemModstamp":"2023-10-16T18:12:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:52.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:51.000+0000","EndDate":"2025-10-15","ServiceDate":"2024-10-16","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0MPQAY","OrderId":"8018N00000032c9QAA","IsDeleted":false,"Product2Id":"01t8N000003DfNuQAK","Id":"8028N0000005p2tQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2tQAA","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t8N000003DfNuQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":1440.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479963671","SBQQ__SegmentIndex__c":1,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJgcQAG","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihsUAA","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000219","SystemModstamp":"2023-10-16T18:12:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:52.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:51.000+0000","EndDate":"2024-10-15","ServiceDate":"2023-10-16","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0MPQAY","OrderId":"8018N00000032c9QAA","IsDeleted":false,"Product2Id":"01t8N000003DfNuQAK","Id":"8028N0000005p2uQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2uQAA","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-09-29T17:43:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T17:43:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T17:43:59.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s8N000002d0dzQAA"],"Opportunities":["0068N000006QZRvQAO"],"Accounts":["0018N00000JbPIRQA3"],"OrderItems":["8028N0000005p2tQAA","8028N0000005p2uQAA"],"Quotes":["a0z8N000000zBcLQAU"],"Opportunity":{"Id":"0068N000006QZRvQAO","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRvQAO","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":2880.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-10-16T18:12:53.000+0000","LastViewedDate":"2023-10-16T18:12:53.000+0000","SystemModstamp":"2023-10-16T18:12:52.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:52.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:50.000+0000","TotalAmount":2880.00,"OrderNumber":"00000306","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-10-16T18:12:52.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-10-16","OpportunityId":"0068N000006QZRvQAO","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JbPIRQA3","OwnerId":"0058N000004zYG5QAM","Id":"8018N00000032c9QAA","attributes":{"url":"/services/data/v59.0/sobjects/Order/8018N00000032c9QAA","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"HasOptedOutOfFax","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"DoNotCall","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ContractId","sobject_type":"Opportunity","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"IqScore","sobject_type":"Opportunity","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Primary_Contact__c","sobject_type":"Account","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingStreet","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingCity","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingState","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingPostalCode","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingCountry","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingLatitude","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingLongitude","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingGeocodeAccuracy","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingAddress","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Name","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%278018N00000032c9QAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:54 GMT + Set-Cookie: + - BrowserId=oGZ3c2xPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:54 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=462/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c9QAA"},"Type":"New","OpportunityId":"0068N000006QZRvQAO","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006QZRvQAO"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278018N00000032c9QAA%27%20%20AND%20Status%20=%20%27Activated%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:54 GMT + Set-Cookie: + - BrowserId=oIErKGxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:54 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=457/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c9QAA"},"Id":"8018N00000032c9QAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/customers + body: + encoding: UTF-8 + string: name=REST+Account++2023-10-16+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0018N00000JbPIRQA3&metadata[salesforce_account_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F0018N00000JbPIRQA3 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - 063fa5b2-455f-43da-be6d-76be4ed1cdc6 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:55 GMT + Content-Type: + - application/json + Content-Length: + - '843' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fcustomers; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 063fa5b2-455f-43da-be6d-76be4ed1cdc6 + Original-Request: + - req_4ADmdqNLWn8zoI + Request-Id: + - req_4ADmdqNLWn8zoI + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "cus_OpaSOGUPDGceHz", + "object": "customer", + "address": null, + "balance": 0, + "created": 1697479974, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "4AC08729", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, + "livemode": false, + "metadata": { + "salesforce_account_id": "0018N00000JbPIRQA3", + "salesforce_account_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/0018N00000JbPIRQA3" + }, + "name": "REST Account 2023-10-16 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0018N00000JbPIRQA3 + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"cus_OpaSOGUPDGceHz"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:55 GMT + Set-Cookie: + - BrowserId=oOakT2xPEe6eVoH0UjEKMA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:55 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=458/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/products + body: + encoding: UTF-8 + string: name=REST+Product2++2023-10-16+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t8N000003DfNuQAK&metadata[salesforce_product2_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01t8N000003DfNuQAK + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_4ADmdqNLWn8zoI","request_duration_ms":446}}' + Idempotency-Key: + - 989b8767-b792-4ffe-9e43-978031d008d5 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:55 GMT + Content-Type: + - application/json + Content-Length: + - '761' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 989b8767-b792-4ffe-9e43-978031d008d5 + Original-Request: + - req_ATNEDnrZzar0kR + Request-Id: + - req_ATNEDnrZzar0kR + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaSBfv1a9axIl", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479975, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNuQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNuQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-12", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479975, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNuQAK + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"prod_OpaSBfv1a9axIl"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:55 GMT + Set-Cookie: + - BrowserId=oUqV1GxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:55 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=458/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNuQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:56 GMT + Set-Cookie: + - BrowserId=oYP1fWxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:56 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=460/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNuQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:56 GMT + Set-Cookie: + - BrowserId=oZz7imxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:56 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=452/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNuQAK + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:56 GMT + Set-Cookie: + - BrowserId=obevfmxPEe6dhS0iYJKafA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:56 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=460/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:56 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000003DfNuQAK"},"Id":"01t8N000003DfNuQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:12:40.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:56.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:56.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPricingField__c":"Quantity","SBQQ__ChargeType__c":null,"SBQQ__Component__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationFieldSet__c":null,"SBQQ__ConfigurationFields__c":null,"SBQQ__ConfigurationFormTitle__c":null,"SBQQ__ConfigurationType__c":null,"SBQQ__ConfigurationValidator__c":null,"SBQQ__ConfiguredCodePattern__c":null,"SBQQ__ConfiguredDescriptionPattern__c":null,"SBQQ__CostEditable__c":false,"SBQQ__CostSchedule__c":null,"SBQQ__CustomConfigurationPage__c":null,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__CustomerCommunityAvailability__c":null,"SBQQ__DefaultPricingTable__c":null,"SBQQ__DefaultQuantity__c":1.0,"SBQQ__DescriptionLocked__c":false,"SBQQ__DiscountCategory__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DynamicPricingConstraint__c":null,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionLayout__c":null,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingGuidance__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductPictureID__c":null,"SBQQ__QuantityEditable__c":true,"SBQQ__QuantityScale__c":null,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__RenewalProduct__c":null,"SBQQ__SortOrder__c":null,"SBQQ__Specifications__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":1.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_OpaSBfv1a9axIl","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OpaSBfv1a9axIl"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2tQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:56 GMT + Set-Cookie: + - BrowserId=odY0oGxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:56 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=452/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2tQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:57 GMT + Set-Cookie: + - BrowserId=ofHSkGxPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:57 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:57 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:57 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=463/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2tQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:57 GMT + Set-Cookie: + - BrowserId=og9sh2xPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:57 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:57 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:57 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=459/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=144000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2tQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2tQAA&product=prod_OpaSBfv1a9axIl + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - 3775c0d8-5860-4911-98ec-ff0e9f516168 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:57 GMT + Content-Type: + - application/json + Content-Length: + - '848' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 3775c0d8-5860-4911-98ec-ff0e9f516168 + Original-Request: + - req_W0DcN6b1qtpclk + Request-Id: + - req_W0DcN6b1qtpclk + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHhIsgf92XbAOHFz4s27G", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479977, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2tQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2tQAA" + }, + "nickname": null, + "product": "prod_OpaSBfv1a9axIl", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2tQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vHhIsgf92XbAOHFz4s27G"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:57 GMT + Set-Cookie: + - BrowserId=olmVDmxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:57 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:57 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:57 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=461/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2tQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:58 GMT + Set-Cookie: + - BrowserId=oof4ZmxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:58 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=474/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/products/prod_OpaSBfv1a9axIl + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_W0DcN6b1qtpclk","request_duration_ms":249}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:58 GMT + Content-Type: + - application/json + Content-Length: + - '761' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_JGFLzzd8ySpd3M + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaSBfv1a9axIl", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479975, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNuQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNuQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-12", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479975, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNuQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:58 GMT + Set-Cookie: + - BrowserId=or7m62xPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:58 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=469/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2uQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:58 GMT + Set-Cookie: + - BrowserId=otcph2xPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:58 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=471/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2uQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:58 GMT + Set-Cookie: + - BrowserId=ov0A52xPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:58 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=469/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=144000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2uQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2uQAA&product=prod_OpaSBfv1a9axIl + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_JGFLzzd8ySpd3M","request_duration_ms":182}}' + Idempotency-Key: + - 5ba3c0bd-0f9e-4aa8-ba58-c5419c364172 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:59 GMT + Content-Type: + - application/json + Content-Length: + - '848' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 5ba3c0bd-0f9e-4aa8-ba58-c5419c364172 + Original-Request: + - req_mXHgAa7VxAzIq3 + Request-Id: + - req_mXHgAa7VxAzIq3 + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479979, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2uQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2uQAA" + }, + "nickname": null, + "product": "prod_OpaSBfv1a9axIl", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2uQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vHjIsgf92XbAOB8BTPrpR"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:59 GMT + Set-Cookie: + - BrowserId=o0fFomxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:59 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=472/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2uQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:59 GMT + Set-Cookie: + - BrowserId=o3rkB2xPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:59 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=462/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N8N000000QgUuUAK"},"Id":"a1N8N000000QgUuUAK"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N8N000000QgUuUAK + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:59 GMT + Set-Cookie: + - BrowserId=o5NN-2xPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:59 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=475/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:52 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N8N000000QgUuUAK"},"Id":"a1N8N000000QgUuUAK","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"0003","CreatedDate":"2023-10-16T18:12:52.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:52.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five + percent off coupon","Order_Item__c":"8028N0000005p2uQAA","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R8N000000vglBUAQ","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R8N000000vglBUAQ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:59 GMT + Set-Cookie: + - BrowserId=o62MS2xPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:59 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=470/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:48 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R8N000000vglBUAQ"},"Id":"a1R8N000000vglBUAQ","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"0002","CreatedDate":"2023-10-16T18:12:48.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:48.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:48.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five + percent off coupon","Percent_Off__c":25.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/coupons + body: + encoding: UTF-8 + string: name=Twenty-five+percent+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N8N000000QgUuUAK&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2Fa1N8N000000QgUuUAK + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_ATNEDnrZzar0kR","request_duration_ms":313}}' + Idempotency-Key: + - 07a85a62-1a51-455c-b49f-9a65004fa754 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:13:00 GMT + Content-Type: + - application/json + Content-Length: + - '547' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fcoupons; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 07a85a62-1a51-455c-b49f-9a65004fa754 + Original-Request: + - req_mg8bcepVtXT8AM + Request-Id: + - req_mg8bcepVtXT8AM + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pfppvX9X", + "object": "coupon", + "amount_off": null, + "created": 1697479980, + "currency": null, + "duration": "once", + "duration_in_months": null, + "livemode": false, + "max_redemptions": null, + "metadata": { + "salesforce_order_stripe_coupon_id": "a1N8N000000QgUuUAK", + "salesforce_order_stripe_coupon_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/a1N8N000000QgUuUAK" + }, + "name": "Twenty-five percent off coupon", + "percent_off": 25.0, + "redeem_by": null, + "times_redeemed": 0, + "valid": true + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N8N000000QgUuUAK + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"pfppvX9X"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:13:00 GMT + Set-Cookie: + - BrowserId=o_YulmxPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:00 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=467/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:00 GMT + Set-Cookie: + - BrowserId=pBmUqGxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:00 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=472/5000000 + Etag: + - '"1100e741--gzip"' + Last-Modified: + - Wed, 11 Oct 2023 19:10:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"encoding":"UTF-8","maxBatchSize":200,"sobjects":[{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pp","label":"AI + Application","labelPlural":"AI Applications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplication/{ID}","describe":"/services/data/v58.0/sobjects/AIApplication/describe","sobject":"/services/data/v58.0/sobjects/AIApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6S9","label":"AI + Application config","labelPlural":"AI Application configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplicationConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplicationConfig/{ID}","describe":"/services/data/v58.0/sobjects/AIApplicationConfig/describe","sobject":"/services/data/v58.0/sobjects/AIApplicationConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qd","label":"AI + Insight Action","labelPlural":"AI Insight Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightAction/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightAction/describe","sobject":"/services/data/v58.0/sobjects/AIInsightAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9bq","label":"AI + Insight Feedback","labelPlural":"AI Insight Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightFeedback/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightFeedback/describe","sobject":"/services/data/v58.0/sobjects/AIInsightFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T2","label":"AI + Insight Reason","labelPlural":"AI Insight Reasons","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightReason","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightReason/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightReason/describe","sobject":"/services/data/v58.0/sobjects/AIInsightReason"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qc","label":"AI + Insight Value","labelPlural":"AI Insight Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightValue/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightValue/describe","sobject":"/services/data/v58.0/sobjects/AIInsightValue"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ae","label":"AI + Prediction Event","labelPlural":"AI Prediction Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIPredictionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIPredictionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AIPredictionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AIPredictionEvent/describe","sobject":"/services/data/v58.0/sobjects/AIPredictionEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qb","label":"AI + Record Insight","labelPlural":"AI Record Insights","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIRecordInsight","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIRecordInsight/{ID}","describe":"/services/data/v58.0/sobjects/AIRecordInsight/describe","sobject":"/services/data/v58.0/sobjects/AIRecordInsight"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Accepted + Event Relation","labelPlural":"Accepted Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AcceptedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AcceptedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/AcceptedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/AcceptedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"001","label":"Account","labelPlural":"Accounts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Account","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Account/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Account/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Account/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Account/listviews","describe":"/services/data/v58.0/sobjects/Account/describe","quickActions":"/services/data/v58.0/sobjects/Account/quickActions","layouts":"/services/data/v58.0/sobjects/Account/describe/layouts","sobject":"/services/data/v58.0/sobjects/Account"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Change Event","labelPlural":"Account Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CA","label":"Account + Clean Info","labelPlural":"Account Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/AccountCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/AccountCleanInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02Z","label":"Account + Contact Role","labelPlural":"Account Contact Roles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRole/{ID}","describe":"/services/data/v58.0/sobjects/AccountContactRole/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AccountContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Contact Role Change Event","labelPlural":"Account Contact Role Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Feed","labelPlural":"Account Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountFeed/{ID}","describe":"/services/data/v58.0/sobjects/AccountFeed/describe","sobject":"/services/data/v58.0/sobjects/AccountFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + History","labelPlural":"Account History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountHistory/{ID}","describe":"/services/data/v58.0/sobjects/AccountHistory/describe","sobject":"/services/data/v58.0/sobjects/AccountHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Account + Partner","labelPlural":"Account Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AccountPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AccountPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AccountPartner/{ID}","describe":"/services/data/v58.0/sobjects/AccountPartner/describe","layouts":"/services/data/v58.0/sobjects/AccountPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/AccountPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Account","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00r","label":"Account + Share","labelPlural":"Account Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountShare/{ID}","describe":"/services/data/v58.0/sobjects/AccountShare/describe","sobject":"/services/data/v58.0/sobjects/AccountShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07g","label":"Action + Link Group Template","labelPlural":"Action Link Group Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ActionLinkGroupTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07l","label":"Action + Link Template","labelPlural":"Action Link Templates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ActionLinkTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActionLinkTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H2","label":"Active + Feature License Metric","labelPlural":"Active Feature License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveFeatureLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H1","label":"Active + Permission Set License Metric","labelPlural":"Active Permission Set License + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivePermSetLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H0","label":"Active + Profile Metric","labelPlural":"Active Profile Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveProfileMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveProfileMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveProfileMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveProfileMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2fp","label":"Activity + Field History","labelPlural":"Activity Field Histories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityFieldHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Activity + History","labelPlural":"Activity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04m","label":"Additional + Directory Number","labelPlural":"Additional Directory Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AdditionalNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AdditionalNumber/{ID}","describe":"/services/data/v58.0/sobjects/AdditionalNumber/describe","sobject":"/services/data/v58.0/sobjects/AdditionalNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"130","label":"Address","labelPlural":"Addresses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Address","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Address/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Address/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Address/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Address/describe","layouts":"/services/data/v58.0/sobjects/Address/describe/layouts","sobject":"/services/data/v58.0/sobjects/Address"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Aggregate + Result","labelPlural":"Aggregate Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AggregateResult","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AggregateResult/{ID}","describe":"/services/data/v58.0/sobjects/AggregateResult/describe","sobject":"/services/data/v58.0/sobjects/AggregateResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Z7","label":"Alternative + Payment Method","labelPlural":"Alternative Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AlternativePaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/AlternativePaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethod"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AlternativePaymentMethod","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Alternative + Payment Method Share","labelPlural":"Alternative Payment Method Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AlternativePaymentMethodShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/describe","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bt","label":"Announcement","labelPlural":"Announcements","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Announcement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Announcement/{ID}","describe":"/services/data/v58.0/sobjects/Announcement/describe","sobject":"/services/data/v58.0/sobjects/Announcement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01p","label":"Apex + Class","labelPlural":"Apex Classes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApexClass","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApexClass/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApexClass/{ID}","describe":"/services/data/v58.0/sobjects/ApexClass/describe","layouts":"/services/data/v58.0/sobjects/ApexClass/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApexClass"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"099","label":"Visualforce + Component","labelPlural":"Visualforce Components","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexComponent/{ID}","describe":"/services/data/v58.0/sobjects/ApexComponent/describe","sobject":"/services/data/v58.0/sobjects/ApexComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06j","label":"Apex + Email Notification","labelPlural":"Apex Email Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexEmailNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexEmailNotification/{ID}","describe":"/services/data/v58.0/sobjects/ApexEmailNotification/describe","sobject":"/services/data/v58.0/sobjects/ApexEmailNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07L","label":"Apex + Debug Log","labelPlural":"Apex Debug Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexLog/{ID}","describe":"/services/data/v58.0/sobjects/ApexLog/describe","sobject":"/services/data/v58.0/sobjects/ApexLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"066","label":"Visualforce + Page","labelPlural":"Visualforce Pages","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexPage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPage/{ID}","describe":"/services/data/v58.0/sobjects/ApexPage/describe","sobject":"/services/data/v58.0/sobjects/ApexPage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ve","label":"Apex + Page Info","labelPlural":"Apex Pages Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexPageInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPageInfo/{ID}","describe":"/services/data/v58.0/sobjects/ApexPageInfo/describe","sobject":"/services/data/v58.0/sobjects/ApexPageInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"709","label":"Apex + Test Queue Item","labelPlural":"Apex Test Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestQueueItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestQueueItem/describe","sobject":"/services/data/v58.0/sobjects/ApexTestQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07M","label":"Apex + Test Result","labelPlural":"Apex Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05n","label":"Apex + Test Result Limit","labelPlural":"Apex Test Result Limit","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResultLimits","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResultLimits/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResultLimits/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResultLimits"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05m","label":"Apex + Test Run Result","labelPlural":"Apex Test Run Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestRunResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestRunResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestRunResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestRunResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05F","label":"Apex + Test Suite","labelPlural":"Apex Test Suites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestSuite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestSuite/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestSuite/describe","sobject":"/services/data/v58.0/sobjects/ApexTestSuite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01q","label":"Apex + Trigger","labelPlural":"Apex Triggers","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexTrigger","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTrigger/{ID}","describe":"/services/data/v58.0/sobjects/ApexTrigger/describe","sobject":"/services/data/v58.0/sobjects/ApexTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0kt","label":"Apex + Type Implementor","labelPlural":"Apex Type Implementors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTypeImplementor","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTypeImplementor/{ID}","describe":"/services/data/v58.0/sobjects/ApexTypeImplementor/describe","sobject":"/services/data/v58.0/sobjects/ApexTypeImplementor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j5","label":"API + Anomaly Event","labelPlural":"API Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ApiAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j6","label":"API + Anomaly Event Store","labelPlural":"API Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApiAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApiAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"API + Anomaly Event Store Feed","labelPlural":"API Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07t","label":"API + Event","labelPlural":"API Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEvent/{ID}","describe":"/services/data/v58.0/sobjects/ApiEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QI","label":"API + Event Stream","labelPlural":"API Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ApiEventStream/describe","sobject":"/services/data/v58.0/sobjects/ApiEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XI","label":"App + Analytics Query Request","labelPlural":"App Analytics Query Requests","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"AppAnalyticsQueryRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/{ID}","describe":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/describe","sobject":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06m","label":"App + Definition","labelPlural":"App Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AppDefinition/describe","sobject":"/services/data/v58.0/sobjects/AppDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mg","label":"App + Extension","labelPlural":"App Extensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppExtension/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppExtension/{ID}","describe":"/services/data/v58.0/sobjects/AppExtension/describe","layouts":"/services/data/v58.0/sobjects/AppExtension/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppExtension"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AppExtension","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"App + Extension Change Event","labelPlural":"App Extension Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppExtensionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AppExtensionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DS","label":"AppMenuItem","labelPlural":"AppMenuItems","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/AppMenuItem/describe","sobject":"/services/data/v58.0/sobjects/AppMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06o","label":"App + Tab Member","labelPlural":"App Tab Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppTabMember","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppTabMember/{ID}","describe":"/services/data/v58.0/sobjects/AppTabMember/describe","sobject":"/services/data/v58.0/sobjects/AppTabMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j8","label":"Application + Usage Assignment","labelPlural":"Application Usage Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppUsageAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppUsageAssignment/{ID}","describe":"/services/data/v58.0/sobjects/AppUsageAssignment/describe","layouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppUsageAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0mS","label":"Appointment + Topic Time Slot","labelPlural":"Appointment Topic Time Slots","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe","quickActions":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/quickActions","layouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Topic Time Slot History","labelPlural":"Appointment Topic Time Slot History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"52D","label":"Appointment + Bundle Aggregation Duration Downscale","labelPlural":"Appointment Bundle Aggregation + Duration Downscales","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrDurDnscale","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrDurDnscale","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Duration Downscale Feed","labelPlural":"Appointment Bundle + Aggregation Duration Downscale Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrDurDnscaleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7yi","label":"Appointment + Bundle Aggregation Policy","labelPlural":"Appointment Bundle Aggregation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Policy Feed","labelPlural":"Appointment Bundle Aggregation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Cv","label":"Appointment + Bundle Config","labelPlural":"Appointment Bundle Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleConfig","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfig/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleConfig/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleConfig/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleConfig"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Feed","labelPlural":"Appointment Bundle Config Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config History","labelPlural":"Appointment Bundle Config History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundleConfig","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Share","labelPlural":"Appointment Bundle Config Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sT","label":"Appointment + Bundle Policy","labelPlural":"Appointment Bundle Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Feed","labelPlural":"Appointment Bundle Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundlePolicy","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Share","labelPlural":"Appointment Bundle Policy Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7b0","label":"Appointment + Bundle Policy Service Territory","labelPlural":"Appointment Bundle Policy + Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicySvcTerr","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicySvcTerr","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Service Territory Feed","labelPlural":"Appointment Bundle Policy + Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicySvcTerrFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8XA","label":"Appointment + Bundle Propagation Policy","labelPlural":"Appointment Bundle Propagation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePropagatePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePropagatePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Propagation Policy Feed","labelPlural":"Appointment Bundle Propagation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePropagatePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6KP","label":"Appointment + Bundle Restriction Policy","labelPlural":"Appointment Bundle Restriction Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleRestrictPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleRestrictPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Restriction Policy Feed","labelPlural":"Appointment Bundle Restriction + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleRestrictPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lU","label":"Appointment + Bundle Sort Policy","labelPlural":"Appointment Bundle Sort Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleSortPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleSortPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Sort Policy Feed","labelPlural":"Appointment Bundle Sort Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleSortPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02i","label":"Asset","labelPlural":"Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Asset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Asset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Asset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Asset/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Asset/listviews","describe":"/services/data/v58.0/sobjects/Asset/describe","quickActions":"/services/data/v58.0/sobjects/Asset/quickActions","layouts":"/services/data/v58.0/sobjects/Asset/describe/layouts","sobject":"/services/data/v58.0/sobjects/Asset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nL","label":"Asset + Action","labelPlural":"Asset Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetAction/describe","layouts":"/services/data/v58.0/sobjects/AssetAction/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nM","label":"Asset + Action Source","labelPlural":"Asset Action Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetActionSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetActionSource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetActionSource/describe","layouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetActionSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0oV","label":"Asset + Attribute","labelPlural":"Asset Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetAttribute","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAttribute/{ID}","describe":"/services/data/v58.0/sobjects/AssetAttribute/describe","layouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAttribute"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetAttribute","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Attribute Change Event","labelPlural":"Asset Attribute Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetAttributeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Change Event","labelPlural":"Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gP","label":"Asset + Downtime Period","labelPlural":"Asset Downtime Periods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetDowntimePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriod/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe","quickActions":"/services/data/v58.0/sobjects/AssetDowntimePeriod/quickActions","layouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriod"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period Feed","labelPlural":"Asset Downtime Period Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period History","labelPlural":"Asset Downtime Period History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Feed","labelPlural":"Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + History","labelPlural":"Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1AR","label":"Asset + Relationship","labelPlural":"Asset Relationships","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetRelationship","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetRelationship/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetRelationship/describe","quickActions":"/services/data/v58.0/sobjects/AssetRelationship/quickActions","layouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetRelationship"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship Feed","labelPlural":"Asset Relationship Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship History","labelPlural":"Asset Relationship History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Asset","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"70a","label":"Asset + Share","labelPlural":"Asset Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetShare/{ID}","describe":"/services/data/v58.0/sobjects/AssetShare/describe","sobject":"/services/data/v58.0/sobjects/AssetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nK","label":"Asset + State Period","labelPlural":"Asset State Periods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetStatePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetStatePeriod/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetStatePeriod/describe","layouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetStatePeriod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Li","label":"Asset + Token Event","labelPlural":"Asset Token Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetTokenEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetTokenEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetTokenEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetTokenEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetTokenEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4xo","label":"Asset + Warranty","labelPlural":"Asset Warranties","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetWarranty","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetWarranty/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetWarranty/describe","quickActions":"/services/data/v58.0/sobjects/AssetWarranty/quickActions","layouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetWarranty"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Change Event","labelPlural":"Asset Warranty Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Feed","labelPlural":"Asset Warranty Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty History","labelPlural":"Asset Warranty History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03r","label":"Assigned + Resource","labelPlural":"Assigned Resources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssignedResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssignedResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssignedResource/describe","quickActions":"/services/data/v58.0/sobjects/AssignedResource/quickActions","layouts":"/services/data/v58.0/sobjects/AssignedResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssignedResource"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Change Event","labelPlural":"Assigned Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Feed","labelPlural":"Assigned Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssignedResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Q","label":"Assignment + Rule","labelPlural":"Assignment Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignmentRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignmentRule/{ID}","describe":"/services/data/v58.0/sobjects/AssignmentRule/describe","sobject":"/services/data/v58.0/sobjects/AssignmentRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kt","label":"Associated + Location","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated + Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex + Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async + Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async + Operation Log","labelPlural":"Async Operation Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AsyncOperationLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationLog/{ID}","describe":"/services/data/v58.0/sobjects/AsyncOperationLog/describe","layouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/AsyncOperationLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0YD","label":"Async + Operation Status","labelPlural":"Async Operation Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationStatus/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationStatus/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationStatus/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attached + Content Document","labelPlural":"Attached Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttachedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttachedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/AttachedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/AttachedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00P","label":"Attachment","labelPlural":"Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Attachment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Attachment/{ID}","describe":"/services/data/v58.0/sobjects/Attachment/describe","sobject":"/services/data/v58.0/sobjects/Attachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0tj","label":"Attribute + Definition","labelPlural":"Attribute Definitions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/AttributeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Feed","labelPlural":"Attribute Definition Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition History","labelPlural":"Attribute Definition History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Share","labelPlural":"Attribute Definition Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v5","label":"Attribute + Picklist","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute + Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning + Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura + Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle + Info","labelPlural":"AuraDefinitionBundle Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundleInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ad","label":"AuraDefinition + Info","labelPlural":"AuraDefinition Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07T","label":"Authentication + Configuration","labelPlural":"Authentication Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfig/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfig/describe","sobject":"/services/data/v58.0/sobjects/AuthConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07U","label":"Authentication + Configuration Auth. Provider","labelPlural":"Authentication Configuration + Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfigProviders","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfigProviders/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfigProviders/describe","sobject":"/services/data/v58.0/sobjects/AuthConfigProviders"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SO","label":"Auth. + Provider","labelPlural":"Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthProvider/{ID}","describe":"/services/data/v58.0/sobjects/AuthProvider/describe","sobject":"/services/data/v58.0/sobjects/AuthProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ak","label":"Auth + Session","labelPlural":"Auth Sessions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthSession","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthSession/{ID}","describe":"/services/data/v58.0/sobjects/AuthSession/describe","sobject":"/services/data/v58.0/sobjects/AuthSession"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cI","label":"Authorization + Form","labelPlural":"Authorization Forms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationForm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationForm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationForm/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationForm/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationForm"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cK","label":"Authorization + Form Consent","labelPlural":"Authorization Form Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormConsent/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Change Event","labelPlural":"Authorization Form Consent Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent History","labelPlural":"Authorization Form Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Share","labelPlural":"Authorization Form Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cM","label":"Authorization + Form Data Use","labelPlural":"Authorization Form Data Uses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormDataUse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUse"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormDataUse","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use History","labelPlural":"Authorization Form Data Use History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormDataUse","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use Share","labelPlural":"Authorization Form Data Use Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationForm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form History","labelPlural":"Authorization Form History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationForm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Share","labelPlural":"Authorization Form Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cN","label":"Authorization + Form Text","labelPlural":"Authorization Form Texts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormText/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormText/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormText/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormText"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text Feed","labelPlural":"Authorization Form Text Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text History","labelPlural":"Authorization Form Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08P","label":"Background + Operation","labelPlural":"Background Operations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"BackgroundOperation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BackgroundOperation/{ID}","describe":"/services/data/v58.0/sobjects/BackgroundOperation/describe","layouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/layouts","sobject":"/services/data/v58.0/sobjects/BackgroundOperation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QQ","label":"Batch + Apex Error Platform Event","labelPlural":"Batch Apex Error Platform Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BatchApexErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BatchApexErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BatchApexErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BatchApexErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/BatchApexErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"016","label":"Letterhead","labelPlural":"Letterheads","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandTemplate/{ID}","describe":"/services/data/v58.0/sobjects/BrandTemplate/describe","sobject":"/services/data/v58.0/sobjects/BrandTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lw","label":"Branding + Set","labelPlural":"Branding Sets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSet/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSet/describe","sobject":"/services/data/v58.0/sobjects/BrandingSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ly","label":"Branding + Set Property","labelPlural":"Branding Set Properties","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSetProperty","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSetProperty/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSetProperty/describe","sobject":"/services/data/v58.0/sobjects/BrandingSetProperty"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5LH","label":"Briefcase + Assignment","labelPlural":"Briefcase Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignment/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseAssignment/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseAssignment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Assignment Change Event","labelPlural":"Briefcase Assignment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rY","label":"Briefcase + Definition","labelPlural":"Briefcase Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinition/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseDefinition/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinition"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Definition Change Event","labelPlural":"Briefcase Definition Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinitionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rX","label":"Briefcase + Rule","labelPlural":"Briefcase Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRule/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRule/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rZ","label":"Briefcase + Rule Filter","labelPlural":"Briefcase Rule Filters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRuleFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRuleFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hx","label":"Bulk + API Result Event","labelPlural":"Bulk API Result Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BulkApiResultEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BulkApiResultEvent/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hJ","label":"Bulk + API Result Event Store","labelPlural":"Bulk API Result Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEventStore/{ID}","describe":"/services/data/v58.0/sobjects/BulkApiResultEventStore/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1BU","label":"Business + Brand","labelPlural":"Business Brands","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessBrand","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessBrand/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/BusinessBrand/describe","layouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessBrand"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"BusinessBrand","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Business + Brand Share","labelPlural":"Business Brand Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessBrandShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessBrandShare/{ID}","describe":"/services/data/v58.0/sobjects/BusinessBrandShare/describe","sobject":"/services/data/v58.0/sobjects/BusinessBrandShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01m","label":"Business + Hours","labelPlural":"Business Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessHours/{ID}","describe":"/services/data/v58.0/sobjects/BusinessHours/describe","layouts":"/services/data/v58.0/sobjects/BusinessHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessHours"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"019","label":"Business + Process","labelPlural":"Business Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessProcess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessProcess/{ID}","describe":"/services/data/v58.0/sobjects/BusinessProcess/describe","sobject":"/services/data/v58.0/sobjects/BusinessProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"023","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Calendar","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Calendar/{ID}","describe":"/services/data/v58.0/sobjects/Calendar/describe","sobject":"/services/data/v58.0/sobjects/Calendar"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03A","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarView","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarView/{ID}","describe":"/services/data/v58.0/sobjects/CalendarView/describe","sobject":"/services/data/v58.0/sobjects/CalendarView"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CalendarView","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Calendar + Share","labelPlural":"Calendar Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarViewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarViewShare/{ID}","describe":"/services/data/v58.0/sobjects/CalendarViewShare/describe","sobject":"/services/data/v58.0/sobjects/CalendarViewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04v","label":"Call + Center","labelPlural":"Call Centers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCenter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCenter/{ID}","describe":"/services/data/v58.0/sobjects/CallCenter/describe","sobject":"/services/data/v58.0/sobjects/CallCenter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hn","label":"CallCoachingMediaProvider","labelPlural":"CallCoachingMediaProviders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCoachingMediaProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/{ID}","describe":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/describe","sobject":"/services/data/v58.0/sobjects/CallCoachingMediaProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"701","label":"Campaign","labelPlural":"Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Campaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Campaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Campaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Campaign/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Campaign/listviews","describe":"/services/data/v58.0/sobjects/Campaign/describe","quickActions":"/services/data/v58.0/sobjects/Campaign/quickActions","layouts":"/services/data/v58.0/sobjects/Campaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/Campaign"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Change Event","labelPlural":"Campaign Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Feed","labelPlural":"Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/CampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/CampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Field History","labelPlural":"Campaign Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/CampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/CampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03V","label":"Campaign + Influence Model","labelPlural":"Campaign Influence Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignInfluenceModel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignInfluenceModel/{ID}","describe":"/services/data/v58.0/sobjects/CampaignInfluenceModel/describe","sobject":"/services/data/v58.0/sobjects/CampaignInfluenceModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00v","label":"Campaign + Member","labelPlural":"Campaign Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMember/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMember/describe","layouts":"/services/data/v58.0/sobjects/CampaignMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Change Event","labelPlural":"Campaign Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Y","label":"Campaign + Member Status","labelPlural":"Campaign Member Statuses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatus","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatus/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe","layouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMemberStatus","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Status Change Event","labelPlural":"Campaign Member Status Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatusChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Campaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08s","label":"Campaign + Share","labelPlural":"Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/CampaignShare/describe","sobject":"/services/data/v58.0/sobjects/CampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03O","label":"Card + Payment Method","labelPlural":"Card Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CardPaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CardPaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/CardPaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/CardPaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/CardPaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"500","label":"Case","labelPlural":"Cases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Case","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Case/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Case/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Case/describe/approvalLayouts","caseArticleSuggestions":"/services/data/v58.0/sobjects/Case/suggestedArticles","caseRowArticleSuggestions":"/services/data/v58.0/sobjects/Case/{ID}/suggestedArticles","listviews":"/services/data/v58.0/sobjects/Case/listviews","describe":"/services/data/v58.0/sobjects/Case/describe","quickActions":"/services/data/v58.0/sobjects/Case/quickActions","layouts":"/services/data/v58.0/sobjects/Case/describe/layouts","sobject":"/services/data/v58.0/sobjects/Case"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Change Event","labelPlural":"Case Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CaseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CaseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CaseChangeEvent"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Case + Comment","labelPlural":"Case Comments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseComment/{ID}","describe":"/services/data/v58.0/sobjects/CaseComment/describe","layouts":"/services/data/v58.0/sobjects/CaseComment/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03j","label":"Case + Contact Role","labelPlural":"Case Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseContactRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseContactRole/describe","layouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Feed","labelPlural":"Case Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseFeed/{ID}","describe":"/services/data/v58.0/sobjects/CaseFeed/describe","sobject":"/services/data/v58.0/sobjects/CaseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + History","labelPlural":"Case History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseHistory/{ID}","describe":"/services/data/v58.0/sobjects/CaseHistory/describe","sobject":"/services/data/v58.0/sobjects/CaseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"555","label":"Case + Milestone","labelPlural":"Case Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseMilestone","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseMilestone/{ID}","describe":"/services/data/v58.0/sobjects/CaseMilestone/describe","layouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseMilestone"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01n","label":"Case + Share","labelPlural":"Case Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseShare/{ID}","describe":"/services/data/v58.0/sobjects/CaseShare/describe","sobject":"/services/data/v58.0/sobjects/CaseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"010","label":"Case + Solution","labelPlural":"Case Solution","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseSolution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseSolution/{ID}","describe":"/services/data/v58.0/sobjects/CaseSolution/describe","sobject":"/services/data/v58.0/sobjects/CaseSolution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Status Value","labelPlural":"Case Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseStatus/{ID}","describe":"/services/data/v58.0/sobjects/CaseStatus/describe","sobject":"/services/data/v58.0/sobjects/CaseStatus"}},{"activateable":false,"associateEntityType":"TeamMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member","labelPlural":"Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamMember"}},{"activateable":false,"associateEntityType":"TeamRole","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member Role","labelPlural":"Case Team Member Role","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamRole/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamRole"}},{"activateable":false,"associateEntityType":"TeamTemplate","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team","labelPlural":"Predefined Case Team","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplate/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplate/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplate"}},{"activateable":false,"associateEntityType":"TeamTemplateMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Member","labelPlural":"Predefined Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateMember"}},{"activateable":false,"associateEntityType":"TeamTemplateRecord","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Record","labelPlural":"Predefined Case Team Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02o","label":"Category + Data","labelPlural":"Category Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryData/{ID}","describe":"/services/data/v58.0/sobjects/CategoryData/describe","sobject":"/services/data/v58.0/sobjects/CategoryData"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02n","label":"Category + Node","labelPlural":"Category Nodes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryNode/{ID}","describe":"/services/data/v58.0/sobjects/CategoryNode/describe","sobject":"/services/data/v58.0/sobjects/CategoryNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ca","label":"Chatter + Activity","labelPlural":"Chatter Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterActivity/{ID}","describe":"/services/data/v58.0/sobjects/ChatterActivity/describe","sobject":"/services/data/v58.0/sobjects/ChatterActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MY","label":"Extension","labelPlural":"Extensions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtension/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtension/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtension"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ob","label":"Chatter + Extension Configuration","labelPlural":"Chatter Extension Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtensionConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtensionConfig/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtensionConfig/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtensionConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"713","label":"Client + Browser","labelPlural":"Client Browser","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ClientBrowser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ClientBrowser/{ID}","describe":"/services/data/v58.0/sobjects/ClientBrowser/describe","sobject":"/services/data/v58.0/sobjects/ClientBrowser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0F9","label":"Group","labelPlural":"Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroup/{ID}","listviews":"/services/data/v58.0/sobjects/CollaborationGroup/listviews","describe":"/services/data/v58.0/sobjects/CollaborationGroup/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CollaborationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Group + Feed","labelPlural":"Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FB","label":"Group + Member","labelPlural":"Group Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMember/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I5","label":"Group + Member Request","labelPlural":"Group Member Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMemberRequest","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Aa","label":"Group + Record","labelPlural":"Group Records","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupRecord/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H1","label":"Chatter + Invitation","labelPlural":"Chatter Invitations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationInvitation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationInvitation/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationInvitation/describe","sobject":"/services/data/v58.0/sobjects/CollaborationInvitation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9CR","label":"Collaboration + Room","labelPlural":"Collaboration Rooms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationRoom","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationRoom/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationRoom/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationRoom/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationRoom"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05k","label":"Color + Definition","labelPlural":"Color Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ColorDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ColorDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ColorDefinition/describe","sobject":"/services/data/v58.0/sobjects/ColorDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note, + Attachment, Google Doc And File","labelPlural":"Notes, Attachments, Google + Docs And Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CombinedAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CombinedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/CombinedAttachment/describe","sobject":"/services/data/v58.0/sobjects/CombinedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xl","label":"Communication + Subscription","labelPlural":"Communication Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscription/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscription/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscription/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscription/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eB","label":"Communication + Subscription Channel Type","labelPlural":"Communication Subscription Channel + Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Feed","labelPlural":"Communication Subscription + Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type History","labelPlural":"Communication Subscription + Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Share","labelPlural":"Communication Subscription + Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dY","label":"Communication + Subscription Consent","labelPlural":"Communication Subscription Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionConsent/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Change Event","labelPlural":"Communication Subscription + Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Feed","labelPlural":"Communication Subscription Consent + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent History","labelPlural":"Communication Subscription Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Share","labelPlural":"Communication Subscription Consent + Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Feed","labelPlural":"Communication Subscription Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription History","labelPlural":"Communication Subscription History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscription","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Share","labelPlural":"Communication Subscription Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0al","label":"Communication + Subscription Timing","labelPlural":"Communication Subscription Timings","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionTiming","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTiming/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionTiming/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTiming"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing Feed","labelPlural":"Communication Subscription Timing + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing History","labelPlural":"Communication Subscription Timing History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09a","label":"Zone","labelPlural":"Zones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Community","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Community/{ID}","describe":"/services/data/v58.0/sobjects/Community/describe","sobject":"/services/data/v58.0/sobjects/Community"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QR","label":"Concurrent + Long Running Apex Error Event","labelPlural":"Concurrent Long Running Apex + Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConcurLongRunApexErrEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/describe","sobject":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ah","label":"Conference + Number","labelPlural":"Conference Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConferenceNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConferenceNumber/{ID}","describe":"/services/data/v58.0/sobjects/ConferenceNumber/describe","sobject":"/services/data/v58.0/sobjects/ConferenceNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H4","label":"Connected + App","labelPlural":"Connected Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConnectedApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConnectedApplication/{ID}","describe":"/services/data/v58.0/sobjects/ConnectedApplication/describe","sobject":"/services/data/v58.0/sobjects/ConnectedApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mo","label":"Consumption + Rate","labelPlural":"Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionRate/describe","layouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionRate"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionRate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Rate History ID","labelPlural":"Consumption Rate History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionRateHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionRateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mh","label":"Consumption + Schedule","labelPlural":"Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionSchedule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe","quickActions":"/services/data/v58.0/sobjects/ConsumptionSchedule/quickActions","layouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionSchedule"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ConsumptionSchedule","labelPlural":"ConsumptionSchedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule History ID","labelPlural":"Consumption Schedule History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ConsumptionSchedule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule Share","labelPlural":"Consumption Schedule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"003","label":"Contact","labelPlural":"Contacts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Contact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contact/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contact/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contact/listviews","describe":"/services/data/v58.0/sobjects/Contact/describe","quickActions":"/services/data/v58.0/sobjects/Contact/quickActions","layouts":"/services/data/v58.0/sobjects/Contact/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contact"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Change Event","labelPlural":"Contact Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CC","label":"Contact + Clean Info","labelPlural":"Contact Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/ContactCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/ContactCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Feed","labelPlural":"Contact Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContactFeed/describe","sobject":"/services/data/v58.0/sobjects/ContactFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + History","labelPlural":"Contact History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8lW","label":"Contact + Point Address","labelPlural":"Contact Point Addresses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddress/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointAddress/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointAddress/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointAddress"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Change Event","labelPlural":"Contact Point Address Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address History","labelPlural":"Contact Point Address History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointAddress","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Share","labelPlural":"Contact Point Address Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZX","label":"Contact + Point Consent","labelPlural":"Contact Point Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Change Event","labelPlural":"Contact Point Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent History","labelPlural":"Contact Point Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Share","labelPlural":"Contact Point Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Vl","label":"Contact + Point Email","labelPlural":"Contact Point Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmail/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointEmail/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointEmail/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Change Event","labelPlural":"Contact Point Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email History","labelPlural":"Contact Point Email History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Share","labelPlural":"Contact Point Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ow","label":"Contact + Point Phone","labelPlural":"Contact Point Phones","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointPhone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointPhone/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointPhone/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointPhone"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Change Event","labelPlural":"Contact Point Phone Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone History","labelPlural":"Contact Point Phone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointPhone","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Share","labelPlural":"Contact Point Phone Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZY","label":"Contact + Point Type Consent","labelPlural":"Contact Point Type Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointTypeConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Change Event","labelPlural":"Contact Point Type Consent + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent History","labelPlural":"Contact Point Type Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointTypeConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Share","labelPlural":"Contact Point Type Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tz","label":"Contact + Request","labelPlural":"Contact Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactRequest/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequest/describe","layouts":"/services/data/v58.0/sobjects/ContactRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Request Share","labelPlural":"Contact Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ContactRequestShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03s","label":"Contact + Share","labelPlural":"Contact Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactShare/describe","sobject":"/services/data/v58.0/sobjects/ContactShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03S","label":"Asset + File","labelPlural":"Asset Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentAsset/{ID}","describe":"/services/data/v58.0/sobjects/ContentAsset/describe","sobject":"/services/data/v58.0/sobjects/ContentAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05T","label":"Content + Body","labelPlural":"Content Bodies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentBody","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentBody/{ID}","describe":"/services/data/v58.0/sobjects/ContentBody/describe","sobject":"/services/data/v58.0/sobjects/ContentBody"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05D","label":"Content + Delivery","labelPlural":"Content Deliveries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistribution","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistribution/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistribution/describe","sobject":"/services/data/v58.0/sobjects/ContentDistribution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05H","label":"Content + Delivery View","labelPlural":"Content Delivery Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistributionView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistributionView/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistributionView/describe","sobject":"/services/data/v58.0/sobjects/ContentDistributionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"069","label":"Content + Document","labelPlural":"Content Documents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContentDocument","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocument/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocument/describe","layouts":"/services/data/v58.0/sobjects/ContentDocument/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocument"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Change Event","labelPlural":"Content Document Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ContentDocument + Feed","labelPlural":"ContentDocument Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentFeed/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document History","labelPlural":"Content Document History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06A","label":"Content + Document Link","labelPlural":"Content Document Link","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentLink/describe","layouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocumentLink"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocumentLink","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Link Change Event","labelPlural":"Content Document Link Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLinkChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"057","label":"Content + Document Subscription","labelPlural":"Content Document Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07H","label":"Content + Folder","labelPlural":"Content Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolder/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolder/describe","sobject":"/services/data/v58.0/sobjects/ContentFolder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Folder Item","labelPlural":"Content Folder Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentFolderItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentFolderItem/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderItem/describe","layouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentFolderItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07v","label":"Content + Folder Link","labelPlural":"Content Folder Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderLink/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07I","label":"Content + Folder Member","labelPlural":"Content Folder Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderMember/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05V","label":"Content + Notification","labelPlural":"Content Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentNotification/{ID}","describe":"/services/data/v58.0/sobjects/ContentNotification/describe","sobject":"/services/data/v58.0/sobjects/ContentNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05Q","label":"Content + Tag Subscription","labelPlural":"Content Tag Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentTagSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentTagSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentTagSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentTagSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05S","label":"Content + User Subscription","labelPlural":"Content User Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentUserSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentUserSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentUserSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentUserSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"068","label":"Content + Version","labelPlural":"Content Versions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentVersion/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentVersion/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersion/describe","layouts":"/services/data/v58.0/sobjects/ContentVersion/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentVersion"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version Change Event","labelPlural":"Content Version Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05C","label":"Content + Version Comment","labelPlural":"Content Version Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionComment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionComment/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionComment/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionComment"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version History","labelPlural":"Content Version History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05J","label":"Content + Version Rating","labelPlural":"Content Version Ratings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionRating","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionRating/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionRating/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionRating"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"058","label":"Library","labelPlural":"Libraries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspace","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspace/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspace/describe","layouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentWorkspace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"059","label":"Library + Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library + Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library + Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract + Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + History","labelPlural":"Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"811","label":"Contract + Line Item","labelPlural":"Contract Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineItem/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Change Event","labelPlural":"Contract Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Feed","labelPlural":"Contract Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item History","labelPlural":"Contract Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3lp","label":"Contract + Line Outcome","labelPlural":"Contract Line Outcomes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcome","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcome/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcome/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineOutcome/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcome"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sD","label":"Contract + Line Outcome Data","labelPlural":"Contract Line Outcome Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcomeData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeData/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe","layouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineOutcomeData","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Data Change Event","labelPlural":"Contract Line Outcome Data + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeDataChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential + Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential + Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential + Stuffing Event Store Feed","labelPlural":"Credential Stuffing Event Store + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"50g","label":"Credit + Memo","labelPlural":"Credit Memos","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CreditMemo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemo/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemo/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemo/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemo/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Feed","labelPlural":"Credit Memo Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo History","labelPlural":"Credit Memo History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4sF","label":"Credit + Memo Invoice Application","labelPlural":"Credit Memo Invoice Applications","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplication","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplication/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoInvApplication/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplication"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Invoice Application History","labelPlural":"Credit Memo Invoice Application History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9yx","label":"Credit + Memo Line","labelPlural":"Credit Memo Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoLine/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoLine/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line Feed","labelPlural":"Credit Memo Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line History","labelPlural":"Credit Memo Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CreditMemo","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Share","labelPlural":"Credit Memo Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoShare/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoShare/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08a","label":"Cron + Job","labelPlural":"Cron Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronJobDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronJobDetail/{ID}","describe":"/services/data/v58.0/sobjects/CronJobDetail/describe","sobject":"/services/data/v58.0/sobjects/CronJobDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08e","label":"Scheduled + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom + Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom + Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom + Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom + Help Menu Section","labelPlural":"Custom Help Menu Sections","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuSection","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuSection/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuSection/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuSection"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XH","label":"Custom + HTTP Header","labelPlural":"Custom HTTP Headers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomHttpHeader","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomHttpHeader/{ID}","describe":"/services/data/v58.0/sobjects/CustomHttpHeader/describe","layouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomHttpHeader"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ML","label":"Custom + Notification Type","labelPlural":"Custom Notification Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomNotificationType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomNotificationType/{ID}","describe":"/services/data/v58.0/sobjects/CustomNotificationType/describe","sobject":"/services/data/v58.0/sobjects/CustomNotificationType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3NA","label":"Custom + Object Usage By User License Metric","labelPlural":"Custom Object Usage By + User License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomObjectUserLicenseMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/{ID}","describe":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/describe","sobject":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CP","label":"Custom + Permission","labelPlural":"Custom Permissions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermission/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermission/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermission/describe","layouts":"/services/data/v58.0/sobjects/CustomPermission/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PD","label":"Custom + Permission Dependency","labelPlural":"Custom Permission Dependencies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermissionDependency","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermissionDependency/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe","layouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermissionDependency"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0o6","label":"Customer","labelPlural":"Customers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Customer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Customer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Customer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Customer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Customer/describe","layouts":"/services/data/v58.0/sobjects/Customer/describe/layouts","sobject":"/services/data/v58.0/sobjects/Customer"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Customer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Customer + Share","labelPlural":"Customer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomerShare/{ID}","describe":"/services/data/v58.0/sobjects/CustomerShare/describe","sobject":"/services/data/v58.0/sobjects/CustomerShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06E","label":"D&B + Company","labelPlural":"D&B Companies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DandBCompany","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Z","label":"Dashboard","labelPlural":"Dashboards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Dashboard","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Dashboard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Dashboard/{ID}","listviews":"/services/data/v58.0/sobjects/Dashboard/listviews","describe":"/services/data/v58.0/sobjects/Dashboard/describe","layouts":"/services/data/v58.0/sobjects/Dashboard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Dashboard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01a","label":"Dashboard + Component","labelPlural":"Dashboard Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponent/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponent/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"DashboardComponent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Component Feed","labelPlural":"Dashboard Component Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponentFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponentFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponentFeed"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Dashboard","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Feed","labelPlural":"Dashboard Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03Q","label":"Data + Assessment Field Metric","labelPlural":"Data Assessment Field Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentFieldMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03P","label":"Data + Assessment Metric","labelPlural":"Data Assessment Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03R","label":"Data + Assessment Field Value Metric","labelPlural":"Data Assessment Field Value + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentValueMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentValueMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1e5","label":"Data + Object Data Change Event","labelPlural":"Data Object Data Change Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataObjectDataChgEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/describe","sobject":"/services/data/v58.0/sobjects/DataObjectDataChgEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05a","label":"Data + Statistics","labelPlural":"Data Statistics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataStatistics","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataStatistics/{ID}","describe":"/services/data/v58.0/sobjects/DataStatistics/describe","sobject":"/services/data/v58.0/sobjects/DataStatistics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4dt","label":"Data + Type","labelPlural":"Data Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataType/{ID}","describe":"/services/data/v58.0/sobjects/DataType/describe","sobject":"/services/data/v58.0/sobjects/DataType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZT","label":"Data + Use Legal Basis","labelPlural":"Data Use Legal Bases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUseLegalBasis","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasis/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe","layouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasis"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUseLegalBasis","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis History","labelPlural":"Data Use Legal Basis History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUseLegalBasis","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis Share","labelPlural":"Data Use Legal Basis Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZW","label":"Data + Use Purpose","labelPlural":"Data Use Purposes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUsePurpose","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUsePurpose/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUsePurpose/describe","quickActions":"/services/data/v58.0/sobjects/DataUsePurpose/quickActions","layouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUsePurpose"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUsePurpose","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose History","labelPlural":"Data Use Purpose History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUsePurpose","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose Share","labelPlural":"Data Use Purpose Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeShare/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07m","label":"Data.com + Address","labelPlural":"Data.com Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudAddress","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudAddress/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudAddress/describe","sobject":"/services/data/v58.0/sobjects/DatacloudAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09K","label":"Data.com + Company","labelPlural":"Data.com Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08C","label":"Data.com + Contact","labelPlural":"Data.com Contacts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudContact","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudContact/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudContact/describe","sobject":"/services/data/v58.0/sobjects/DatacloudContact"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09N","label":"D&B + Company","labelPlural":"DandB Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudDandBCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudDandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudDandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09O","label":"Data.com + Owned Entity","labelPlural":"Data.com Owned Entity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudOwnedEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/describe","sobject":"/services/data/v58.0/sobjects/DatacloudOwnedEntity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09F","label":"Data.com + Usage","labelPlural":"Data.com Usage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudPurchaseUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/describe","sobject":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Declined + Event Relation","labelPlural":"Declined Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeclinedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeclinedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/DeclinedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/DeclinedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00C","label":"Recycle + Bin Item","labelPlural":"Recycle Bin","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeleteEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeleteEvent/{ID}","describe":"/services/data/v58.0/sobjects/DeleteEvent/describe","sobject":"/services/data/v58.0/sobjects/DeleteEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DS","label":"Digital + Signature","labelPlural":"Digital Signatures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignature","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignature/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DigitalSignature/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DigitalSignature/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignature"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"DigitalSignature","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Digital + Signature Change Event","labelPlural":"Digital Signature Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignatureChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DW","label":"Digital + Wallet","labelPlural":"Digital Wallets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DigitalWallet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DigitalWallet/{ID}","describe":"/services/data/v58.0/sobjects/DigitalWallet/describe","quickActions":"/services/data/v58.0/sobjects/DigitalWallet/quickActions","layouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DigitalWallet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"015","label":"Document","labelPlural":"Documents","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Document","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Document/{ID}","describe":"/services/data/v58.0/sobjects/Document/describe","sobject":"/services/data/v58.0/sobjects/Document"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05X","label":"Document + Entity Map","labelPlural":"Document Entity Map","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DocumentAttachmentMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DocumentAttachmentMap/{ID}","describe":"/services/data/v58.0/sobjects/DocumentAttachmentMap/describe","sobject":"/services/data/v58.0/sobjects/DocumentAttachmentMap"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I4","label":"Domain","labelPlural":"Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Domain","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Domain/{ID}","describe":"/services/data/v58.0/sobjects/Domain/describe","sobject":"/services/data/v58.0/sobjects/Domain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jf","label":"Custom + URL","labelPlural":"Custom URLs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DomainSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DomainSite/{ID}","describe":"/services/data/v58.0/sobjects/DomainSite/describe","sobject":"/services/data/v58.0/sobjects/DomainSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GL","label":"Duplicate + Record Item","labelPlural":"Duplicate Record Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DuplicateRecordItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GK","label":"Duplicate + Record Set","labelPlural":"Duplicate Record Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRecordSet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordSet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bm","label":"Duplicate + Rule","labelPlural":"Duplicate Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRule/{ID}","describe":"/services/data/v58.0/sobjects/DuplicateRule/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06F","label":"EmailCapture","labelPlural":"Email + Captures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailCapture","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailCapture/{ID}","describe":"/services/data/v58.0/sobjects/EmailCapture/describe","sobject":"/services/data/v58.0/sobjects/EmailCapture"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T6","label":"Email + Domain Filter","labelPlural":"Email Domain Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainFilter/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainFilter/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09P","label":"Email + Domain Key","labelPlural":"Email Domain Keys","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainKey","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainKey/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainKey/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainKey"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02s","label":"Email + Message","labelPlural":"Email Messages","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EmailMessage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailMessage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EmailMessage/describe","quickActions":"/services/data/v58.0/sobjects/EmailMessage/quickActions","layouts":"/services/data/v58.0/sobjects/EmailMessage/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailMessage"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailMessage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Message Change Event","labelPlural":"Email Message Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CZ","label":"Email + Message Relation","labelPlural":"Email Message Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageRelation/{ID}","describe":"/services/data/v58.0/sobjects/EmailMessageRelation/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"26Z","label":"Email + Relay","labelPlural":"Email Relay","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailRelay","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailRelay/{ID}","describe":"/services/data/v58.0/sobjects/EmailRelay/describe","sobject":"/services/data/v58.0/sobjects/EmailRelay"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"093","label":"Email + Services Address","labelPlural":"Email Services Address","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesAddress/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesAddress/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"091","label":"Email + Service","labelPlural":"Email Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesFunction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesFunction/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesFunction/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"018","label":"Email + Status","labelPlural":"Email Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailStatus/{ID}","describe":"/services/data/v58.0/sobjects/EmailStatus/describe","sobject":"/services/data/v58.0/sobjects/EmailStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00X","label":"Email + Template","labelPlural":"Email Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EmailTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EmailTemplate/describe","layouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Template Change Event","labelPlural":"Email Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lq","label":"Embedded + Service","labelPlural":"Embedded Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uu","label":"Embedded + Service Label","labelPlural":"Embedded Service Labels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceLabel","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceLabel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eF","label":"Engagement + Channel Type","labelPlural":"Engagement Channel Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EngagementChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EngagementChannelType/describe","quickActions":"/services/data/v58.0/sobjects/EngagementChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/EngagementChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Feed","labelPlural":"Engagement Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type History","labelPlural":"Engagement Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"EngagementChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Share","labelPlural":"Engagement Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rn","label":"Enhanced + Letterhead","labelPlural":"Enhanced Letterheads","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EnhancedLetterhead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterhead/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe","layouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/layouts","sobject":"/services/data/v58.0/sobjects/EnhancedLetterhead"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EnhancedLetterhead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Enhanced + Letterhead Feed","labelPlural":"Enhanced Letterhead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EnhancedLetterheadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/describe","sobject":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"550","label":"Entitlement","labelPlural":"Entitlements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Entitlement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Entitlement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Entitlement/describe","layouts":"/services/data/v58.0/sobjects/Entitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/Entitlement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Change Event","labelPlural":"Entitlement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EntitlementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EntitlementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EntitlementChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E7","label":"Entitlement + Contact","labelPlural":"Entitlement Contacts","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntitlementContact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntitlementContact/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementContact/describe","layouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntitlementContact"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Feed","labelPlural":"Entitlement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementFeed/describe","sobject":"/services/data/v58.0/sobjects/EntitlementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + History","labelPlural":"Entitlement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementHistory/describe","sobject":"/services/data/v58.0/sobjects/EntitlementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"551","label":"Entitlement + Template","labelPlural":"Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/EntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ie","label":"Entity + Definition","labelPlural":"Entity Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityDefinition/{ID}","describe":"/services/data/v58.0/sobjects/EntityDefinition/describe","sobject":"/services/data/v58.0/sobjects/EntityDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1EM","label":"Object + Milestone","labelPlural":"Object Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntityMilestone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntityMilestone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EntityMilestone/describe","quickActions":"/services/data/v58.0/sobjects/EntityMilestone/quickActions","layouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntityMilestone"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone Feed","labelPlural":"Object Milestone Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneFeed/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone History","labelPlural":"Object Milestone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneHistory/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nv","label":"Entity + Particle","labelPlural":"Entity Particles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityParticle","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityParticle/{ID}","describe":"/services/data/v58.0/sobjects/EntityParticle/describe","sobject":"/services/data/v58.0/sobjects/EntityParticle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E8","label":"Entity + Subscription","labelPlural":"Entity Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitySubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitySubscription/{ID}","describe":"/services/data/v58.0/sobjects/EntitySubscription/describe","sobject":"/services/data/v58.0/sobjects/EntitySubscription"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Error_Log__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Log","labelPlural":"Change Event: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Error_Log__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Error Log","labelPlural":"Share: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__Share/{ID}","describe":"/services/data/v58.0/sobjects/Error_Log__Share/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1M","label":"Error + Log","labelPlural":"Connection Error Log","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Error_Log__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Error_Log__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Error_Log__c/describe","quickActions":"/services/data/v58.0/sobjects/Error_Log__c/quickActions","layouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Error_Log__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00U","label":"Event","labelPlural":"Events","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Event","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Event/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Event/{ID}","eventSeriesUpdates":"/services/data/v58.0/sobjects/Event/{ID}/fromThisEventOnwards","describe":"/services/data/v58.0/sobjects/Event/describe","quickActions":"/services/data/v58.0/sobjects/Event/quickActions","layouts":"/services/data/v58.0/sobjects/Event/describe/layouts","sobject":"/services/data/v58.0/sobjects/Event"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cd","label":"Platform + Event Subscription","labelPlural":"Platform Event Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventBusSubscriber","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventBusSubscriber/{ID}","describe":"/services/data/v58.0/sobjects/EventBusSubscriber/describe","sobject":"/services/data/v58.0/sobjects/EventBusSubscriber"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Change Event","labelPlural":"Event Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Feed","labelPlural":"Event Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventFeed/{ID}","describe":"/services/data/v58.0/sobjects/EventFeed/describe","sobject":"/services/data/v58.0/sobjects/EventFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AT","label":"Event + Log File","labelPlural":"Event Log Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventLogFile","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventLogFile/{ID}","describe":"/services/data/v58.0/sobjects/EventLogFile/describe","sobject":"/services/data/v58.0/sobjects/EventLogFile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0RE","label":"Event + Relation","labelPlural":"Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelation/{ID}","describe":"/services/data/v58.0/sobjects/EventRelation/describe","sobject":"/services/data/v58.0/sobjects/EventRelation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relation Change Event","labelPlural":"Event Relation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k2","label":"Event + Relay Config","labelPlural":"Event Relay Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfig/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayConfig/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfig"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelayConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relay Config Change Event","labelPlural":"Event Relay Config Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfigChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k4","label":"Event + Relay Feedback","labelPlural":"Event Relay Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayFeedback/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayFeedback/describe","sobject":"/services/data/v58.0/sobjects/EventRelayFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1V4","label":"Expense","labelPlural":"Expenses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Expense","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Expense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Expense/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Expense/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Expense/describe","quickActions":"/services/data/v58.0/sobjects/Expense/quickActions","layouts":"/services/data/v58.0/sobjects/Expense/describe/layouts","sobject":"/services/data/v58.0/sobjects/Expense"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Change Event","labelPlural":"Expense Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ExpenseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ExpenseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ExpenseChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Feed","labelPlural":"Expense Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + History","labelPlural":"Expense History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6g5","label":"Expense + Report","labelPlural":"Expense Reports","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReport/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExpenseReport/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReport/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReport"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3zl","label":"Expense + Report Entry","labelPlural":"Expense Report Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReportEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntry/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReportEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntry"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry Feed","labelPlural":"Expense Report Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry History","labelPlural":"Expense Report Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Feed","labelPlural":"Expense Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report History","labelPlural":"Expense Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExpenseReport","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Share","labelPlural":"Expense Report Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Expense","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Share","labelPlural":"Expense Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1GS","label":"ExpressionFilter","labelPlural":"ExpressionFilters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilter/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilter/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8BM","label":"ExpressionFilterCriteria","labelPlural":"ExpressionFilterCriteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilterCriteria"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pz","label":"Expression + Set View","labelPlural":"Expression Set Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionSetView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionSetView/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionSetView/describe","sobject":"/services/data/v58.0/sobjects/ExpressionSetView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XC","label":"External + Data Source","labelPlural":"External Data Sources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ExternalDataSource","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSource/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSource/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6Ay","label":"External + Data Source Descriptor","labelPlural":"External Data Source Descriptors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataSrcDescriptor","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XU","label":"External + Data User Authentication","labelPlural":"External Data User Authentications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataUserAuth","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataUserAuth/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataUserAuth/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataUserAuth"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AY","label":"External + Event","labelPlural":"External Events","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ExternalEvent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExternalEvent/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEvent/describe","layouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExternalEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08N","label":"External + Event Mapping","labelPlural":"External Event Mappings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMapping","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMapping/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExternalEventMapping/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExternalEventMapping/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMapping"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExternalEventMapping","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"External + Event Mapping Share","labelPlural":"External Event Mapping Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMappingShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMappingShare/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEventMappingShare/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMappingShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08M","label":"Feed + Attachment","labelPlural":"Feed Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedAttachment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/FeedAttachment/describe","sobject":"/services/data/v58.0/sobjects/FeedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D7","label":"Feed + Comment","labelPlural":"Feed Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedComment/{ID}","describe":"/services/data/v58.0/sobjects/FeedComment/describe","sobject":"/services/data/v58.0/sobjects/FeedComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D5","label":"Feed + Item","labelPlural":"Feed Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FeedItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedItem/{ID}","describe":"/services/data/v58.0/sobjects/FeedItem/describe","quickActions":"/services/data/v58.0/sobjects/FeedItem/quickActions","layouts":"/services/data/v58.0/sobjects/FeedItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FeedItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I0","label":"Feed + Like","labelPlural":"Feed Likes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedLike","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedLike/{ID}","describe":"/services/data/v58.0/sobjects/FeedLike/describe","sobject":"/services/data/v58.0/sobjects/FeedLike"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09A","label":"Feed + Poll Choice","labelPlural":"Feed Poll Choices","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollChoice","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollChoice/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollChoice/describe","sobject":"/services/data/v58.0/sobjects/FeedPollChoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09B","label":"Feed + Poll Vote","labelPlural":"Feed Poll Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollVote","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollVote/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollVote/describe","sobject":"/services/data/v58.0/sobjects/FeedPollVote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08U","label":"Feed + Revision","labelPlural":"Feed Revisions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedRevision","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedRevision/{ID}","describe":"/services/data/v58.0/sobjects/FeedRevision/describe","sobject":"/services/data/v58.0/sobjects/FeedRevision"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QJ","label":"Feed + Signal","labelPlural":"Feed Signals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedSignal","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedSignal/{ID}","describe":"/services/data/v58.0/sobjects/FeedSignal/describe","sobject":"/services/data/v58.0/sobjects/FeedSignal"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D6","label":"Feed + Tracked Change","labelPlural":"Feed Tracked Changes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedTrackedChange","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedTrackedChange/{ID}","describe":"/services/data/v58.0/sobjects/FeedTrackedChange/describe","sobject":"/services/data/v58.0/sobjects/FeedTrackedChange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fe","label":"Field + Definition","labelPlural":"Field Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldDefinition/{ID}","describe":"/services/data/v58.0/sobjects/FieldDefinition/describe","sobject":"/services/data/v58.0/sobjects/FieldDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01k","label":"Field + Permissions","labelPlural":"Field Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldPermissions/{ID}","describe":"/services/data/v58.0/sobjects/FieldPermissions/describe","sobject":"/services/data/v58.0/sobjects/FieldPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Security Classification","labelPlural":"Field Security Classifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldSecurityClassification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldSecurityClassification/{ID}","describe":"/services/data/v58.0/sobjects/FieldSecurityClassification/describe","sobject":"/services/data/v58.0/sobjects/FieldSecurityClassification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mf","label":"Field + Service Mobile Settings","labelPlural":"Field Service Mobile Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe","layouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/layouts","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettings"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FieldServiceMobileSettings","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Service Mobile Settings Change Event","labelPlural":"Field Service Mobile + Settings Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettingsChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UJ","label":"Field + Service Org Settings","labelPlural":"Field Service Org Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceOrgSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceOrgSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0vI","label":"File + Event","labelPlural":"File Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FileEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FileEvent/describe","sobject":"/services/data/v58.0/sobjects/FileEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0wg","label":"File + Event Store","labelPlural":"File Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEventStore/{ID}","describe":"/services/data/v58.0/sobjects/FileEventStore/describe","sobject":"/services/data/v58.0/sobjects/FileEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06h","label":"FileSearchActivity","labelPlural":"File + Search Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileSearchActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileSearchActivity/{ID}","describe":"/services/data/v58.0/sobjects/FileSearchActivity/describe","sobject":"/services/data/v58.0/sobjects/FileSearchActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2kA","label":"Finance + Balance Snapshot","labelPlural":"Finance Balance Snapshots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceBalanceSnapshot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe","quickActions":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceBalanceSnapshot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Change Event","labelPlural":"Finance Balance Snapshot Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceBalanceSnapshot","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Share","labelPlural":"Finance Balance Snapshot Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0n3","label":"Finance + Transaction","labelPlural":"Finance Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceTransaction/describe","quickActions":"/services/data/v58.0/sobjects/FinanceTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceTransaction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Change Event","labelPlural":"Finance Transaction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceTransaction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Share","labelPlural":"Finance Transaction Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceTransactionShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"022","label":"Fiscal + Year Settings","labelPlural":"Fiscal Year Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FiscalYearSettings","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FiscalYearSettings/{ID}","describe":"/services/data/v58.0/sobjects/FiscalYearSettings/describe","sobject":"/services/data/v58.0/sobjects/FiscalYearSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06i","label":"Flex + Queue Item","labelPlural":"Flex Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlexQueueItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlexQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/FlexQueueItem/describe","sobject":"/services/data/v58.0/sobjects/FlexQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3dd","label":"Flow + Definition","labelPlural":"Flow Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowDefinitionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowDefinitionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowDefinitionView/describe","sobject":"/services/data/v58.0/sobjects/FlowDefinitionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eC","label":"Flow + Execution Error Event","labelPlural":"Flow Execution Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowExecutionErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fo","label":"Flow + Interview","labelPlural":"Flow Interviews","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowInterview","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowInterview/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowInterview/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterview/describe","layouts":"/services/data/v58.0/sobjects/FlowInterview/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowInterview"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8gZ","label":"Flow + Interview Log","labelPlural":"Flow Interview Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLog/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLog/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f6","label":"Flow + Interview Log Entry","labelPlural":"Flow Interview Log Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogEntry"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterviewLog","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Log Share","labelPlural":"Flow Interview Log Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterview","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Share","labelPlural":"Flow Interview Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jo","label":"Orchestration + Event","labelPlural":"Orchestration Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jE","label":"Orchestration + Run","labelPlural":"Orchestration Runs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Run Share","labelPlural":"Orchestration Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jF","label":"Orchestration + Stage Run","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration + Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration + Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow + Record Relation","labelPlural":"Flow Record Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowRecordRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowRecordRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowRecordRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowRecordRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31y","label":"Flow + Interview Stage Relation","labelPlural":"Flow Interview Stage Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowStageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowStageRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowStageRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowStageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2hU","label":"Flow + Test Result","labelPlural":"Flow Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResult/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResult/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResult"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowTestResult","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Test Result Share","labelPlural":"Flow Test Result Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResultShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResultShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResultShare/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResultShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YB","label":"Flow + Test View","labelPlural":"Flow Test Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestView/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestView/describe","sobject":"/services/data/v58.0/sobjects/FlowTestView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3ad","label":"Flow + Variable","labelPlural":"Flow Variables","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVariableView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVariableView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVariableView/describe","sobject":"/services/data/v58.0/sobjects/FlowVariableView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3vd","label":"Flow + Version","labelPlural":"Flow Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVersionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVersionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVersionView/describe","sobject":"/services/data/v58.0/sobjects/FlowVersionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00l","label":"Folder","labelPlural":"Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Folder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Folder/{ID}","describe":"/services/data/v58.0/sobjects/Folder/describe","sobject":"/services/data/v58.0/sobjects/Folder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Foldered + Content Document","labelPlural":"Foldered Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FolderedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FolderedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/FolderedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/FolderedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kn","label":"Formula + Function","labelPlural":"Formula Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunction/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunction/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fE","label":"Formula + Context Function","labelPlural":"Formula Context Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionAllowedType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kh","label":"Formula + Function Category","labelPlural":"Formula Function Categories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionCategory","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionCategory/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionCategory/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionCategory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06d","label":"Setting + Granted By License","labelPlural":"Settings Granted By Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GrantedByLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GrantedByLicense/{ID}","describe":"/services/data/v58.0/sobjects/GrantedByLicense/describe","sobject":"/services/data/v58.0/sobjects/GrantedByLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00G","label":"Group","labelPlural":"Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Group","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Group/{ID}","describe":"/services/data/v58.0/sobjects/Group/describe","sobject":"/services/data/v58.0/sobjects/Group"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"011","label":"Group + Member","labelPlural":"Group Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GroupMember/{ID}","describe":"/services/data/v58.0/sobjects/GroupMember/describe","sobject":"/services/data/v58.0/sobjects/GroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1gp","label":"Gateway + Provider Payment Method Type","labelPlural":"Gateway Provider Payment Method + Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"GtwyProvPaymentMethodType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/{ID}","describe":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/describe","sobject":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C0","label":"Holiday","labelPlural":"Holidays","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Holiday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Holiday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Holiday/{ID}","describe":"/services/data/v58.0/sobjects/Holiday/describe","layouts":"/services/data/v58.0/sobjects/Holiday/describe/layouts","sobject":"/services/data/v58.0/sobjects/Holiday"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9s4","label":"IP + Address Range","labelPlural":"IP Address Ranges","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"IPAddressRange","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/IPAddressRange/{ID}","describe":"/services/data/v58.0/sobjects/IPAddressRange/describe","layouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/layouts","sobject":"/services/data/v58.0/sobjects/IPAddressRange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09k","label":"Icon + Definition","labelPlural":"Icon Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IconDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IconDefinition/{ID}","describe":"/services/data/v58.0/sobjects/IconDefinition/describe","sobject":"/services/data/v58.0/sobjects/IconDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"087","label":"Idea","labelPlural":"Ideas","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Idea","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Idea/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Idea/{ID}","describe":"/services/data/v58.0/sobjects/Idea/describe","layouts":"/services/data/v58.0/sobjects/Idea/describe/layouts","sobject":"/services/data/v58.0/sobjects/Idea"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Idea","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Idea + Comment","labelPlural":"Idea Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdeaComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdeaComment/{ID}","describe":"/services/data/v58.0/sobjects/IdeaComment/describe","sobject":"/services/data/v58.0/sobjects/IdeaComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0k8","label":"Identity + Provider Event Store","labelPlural":"Identity Provider Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityProviderEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityProviderEventStore/{ID}","describe":"/services/data/v58.0/sobjects/IdentityProviderEventStore/describe","sobject":"/services/data/v58.0/sobjects/IdentityProviderEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jx","label":"Identity + Verification Event","labelPlural":"Identity Verification Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityVerificationEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityVerificationEvent/{ID}","describe":"/services/data/v58.0/sobjects/IdentityVerificationEvent/describe","sobject":"/services/data/v58.0/sobjects/IdentityVerificationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yu","label":"Identity + Provider Event Log","labelPlural":"Identity Event Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdpEventLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdpEventLog/{ID}","describe":"/services/data/v58.0/sobjects/IdpEventLog/describe","sobject":"/services/data/v58.0/sobjects/IdpEventLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6TS","label":"Trusted + Domain for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/IframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/IframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YL","label":"Image","labelPlural":"Images","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Image","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Image/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Image/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Image/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Image/describe","quickActions":"/services/data/v58.0/sobjects/Image/quickActions","layouts":"/services/data/v58.0/sobjects/Image/describe/layouts","sobject":"/services/data/v58.0/sobjects/Image"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Feed","labelPlural":"Image Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ImageFeed/describe","sobject":"/services/data/v58.0/sobjects/ImageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + History","labelPlural":"Image History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ImageHistory/describe","sobject":"/services/data/v58.0/sobjects/ImageHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Image","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Share","labelPlural":"Image Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageShare/{ID}","describe":"/services/data/v58.0/sobjects/ImageShare/describe","sobject":"/services/data/v58.0/sobjects/ImageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PK","label":"Individual","labelPlural":"Individuals","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Individual","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Individual/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Individual/{ID}","describe":"/services/data/v58.0/sobjects/Individual/describe","quickActions":"/services/data/v58.0/sobjects/Individual/quickActions","layouts":"/services/data/v58.0/sobjects/Individual/describe/layouts","sobject":"/services/data/v58.0/sobjects/Individual"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + Change Event","labelPlural":"Individual Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/IndividualChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/IndividualChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/IndividualChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + History","labelPlural":"Individual History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualHistory/{ID}","describe":"/services/data/v58.0/sobjects/IndividualHistory/describe","sobject":"/services/data/v58.0/sobjects/IndividualHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Individual","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T5","label":"Individual + Share","labelPlural":"Individual Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualShare/{ID}","describe":"/services/data/v58.0/sobjects/IndividualShare/describe","sobject":"/services/data/v58.0/sobjects/IndividualShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0El","label":"Installed + Mobile App","labelPlural":"Installed Mobile Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InstalledMobileApp","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InstalledMobileApp/{ID}","describe":"/services/data/v58.0/sobjects/InstalledMobileApp/describe","sobject":"/services/data/v58.0/sobjects/InstalledMobileApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3tt","label":"Invoice","labelPlural":"Invoices","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Invoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Invoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Invoice/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Invoice/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Invoice/describe","quickActions":"/services/data/v58.0/sobjects/Invoice/quickActions","layouts":"/services/data/v58.0/sobjects/Invoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/Invoice"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Feed","labelPlural":"Invoice Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice History","labelPlural":"Invoice History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5TV","label":"Invoice + Line","labelPlural":"Invoice Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"InvoiceLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/InvoiceLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/InvoiceLine/describe","quickActions":"/services/data/v58.0/sobjects/InvoiceLine/quickActions","layouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/InvoiceLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line Feed","labelPlural":"Invoice Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line History","labelPlural":"Invoice Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Invoice","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Share","labelPlural":"Invoice Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceShare/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceShare/describe","sobject":"/services/data/v58.0/sobjects/InvoiceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jp","label":"Job + Profile","labelPlural":"Job Profiles","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"JobProfile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/JobProfile/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/JobProfile/describe","quickActions":"/services/data/v58.0/sobjects/JobProfile/quickActions","layouts":"/services/data/v58.0/sobjects/JobProfile/describe/layouts","sobject":"/services/data/v58.0/sobjects/JobProfile"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Feed","labelPlural":"Job Profile Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileFeed/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileFeed/describe","sobject":"/services/data/v58.0/sobjects/JobProfileFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile History","labelPlural":"Job Profile History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileHistory/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileHistory/describe","sobject":"/services/data/v58.0/sobjects/JobProfileHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"JobProfile","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Share","labelPlural":"Job Profile Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileShare/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileShare/describe","sobject":"/services/data/v58.0/sobjects/JobProfileShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0in","label":"Knowledgeable + User","labelPlural":"Knowledgeable Users","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"KnowledgeableUser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/KnowledgeableUser/{ID}","describe":"/services/data/v58.0/sobjects/KnowledgeableUser/describe","sobject":"/services/data/v58.0/sobjects/KnowledgeableUser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00Q","label":"Lead","labelPlural":"Leads","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Lead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Lead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Lead/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Lead/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Lead/listviews","describe":"/services/data/v58.0/sobjects/Lead/describe","quickActions":"/services/data/v58.0/sobjects/Lead/quickActions","layouts":"/services/data/v58.0/sobjects/Lead/describe/layouts","sobject":"/services/data/v58.0/sobjects/Lead"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Change Event","labelPlural":"Lead Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LeadChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LeadChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LeadChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CL","label":"Lead + Clean Info","labelPlural":"Lead Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/LeadCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/LeadCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Feed","labelPlural":"Lead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadFeed/{ID}","describe":"/services/data/v58.0/sobjects/LeadFeed/describe","sobject":"/services/data/v58.0/sobjects/LeadFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + History","labelPlural":"Lead History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadHistory/{ID}","describe":"/services/data/v58.0/sobjects/LeadHistory/describe","sobject":"/services/data/v58.0/sobjects/LeadHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Lead","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01o","label":"Lead + Share","labelPlural":"Lead Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadShare/{ID}","describe":"/services/data/v58.0/sobjects/LeadShare/describe","sobject":"/services/data/v58.0/sobjects/LeadShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Lead + Status Value","labelPlural":"Lead Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadStatus/{ID}","describe":"/services/data/v58.0/sobjects/LeadStatus/describe","sobject":"/services/data/v58.0/sobjects/LeadStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fw","label":"Legal + Entity","labelPlural":"Legal Entities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LegalEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LegalEntity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LegalEntity/describe","quickActions":"/services/data/v58.0/sobjects/LegalEntity/quickActions","layouts":"/services/data/v58.0/sobjects/LegalEntity/describe/layouts","sobject":"/services/data/v58.0/sobjects/LegalEntity"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityFeed/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityFeed/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity History","labelPlural":"Legal Entity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityHistory/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityHistory/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LegalEntity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity Share","labelPlural":"Legal Entity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityShare/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityShare/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0S1","label":"Lightning + Experience Theme","labelPlural":"Lightning Experience Themes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningExperienceTheme","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningExperienceTheme/{ID}","describe":"/services/data/v58.0/sobjects/LightningExperienceTheme/describe","sobject":"/services/data/v58.0/sobjects/LightningExperienceTheme"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7MM","label":"LightningOnboardingConfig","labelPlural":"LightningOnboardingConfigs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningOnboardingConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningOnboardingConfig/{ID}","describe":"/services/data/v58.0/sobjects/LightningOnboardingConfig/describe","sobject":"/services/data/v58.0/sobjects/LightningOnboardingConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bh","label":"Lightning + URI Event","labelPlural":"Lightning URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEvent/{ID}","describe":"/services/data/v58.0/sobjects/LightningUriEvent/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bi","label":"Lightning + URI Event Stream","labelPlural":"Lightning URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LightningUriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LightningUriEventStream/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XB","label":"List + Email","labelPlural":"List Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ListEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ListEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ListEmail/{ID}","describe":"/services/data/v58.0/sobjects/ListEmail/describe","layouts":"/services/data/v58.0/sobjects/ListEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ListEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ListEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Change Event","labelPlural":"List Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ListEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ListEmailChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XF","label":"List + Email Individual Recipient","labelPlural":"List Email Individual Recipients","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailIndividualRecipient","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/describe","sobject":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XD","label":"List + Email Recipient Source","labelPlural":"List Email Recipient Sources","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailRecipientSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailRecipientSource/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailRecipientSource/describe","sobject":"/services/data/v58.0/sobjects/ListEmailRecipientSource"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ListEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Share","labelPlural":"List Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ListEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00B","label":"List + View","labelPlural":"List Views","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListView/{ID}","describe":"/services/data/v58.0/sobjects/ListView/describe","sobject":"/services/data/v58.0/sobjects/ListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Dd","label":"List + View Chart","labelPlural":"List View Charts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChart","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChart/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChart/describe","sobject":"/services/data/v58.0/sobjects/ListViewChart"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0De","label":"List + View Chart Instance","labelPlural":"List View Chart Instances","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChartInstance","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChartInstance/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChartInstance/describe","sobject":"/services/data/v58.0/sobjects/ListViewChartInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0X8","label":"List + View Event","labelPlural":"List View Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEvent/{ID}","describe":"/services/data/v58.0/sobjects/ListViewEvent/describe","sobject":"/services/data/v58.0/sobjects/ListViewEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XG","label":"List + View Event Stream","labelPlural":"List View Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListViewEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ListViewEventStream/describe","sobject":"/services/data/v58.0/sobjects/ListViewEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"131","label":"Location","labelPlural":"Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Location","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Location/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Location/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Location/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Location/describe","quickActions":"/services/data/v58.0/sobjects/Location/quickActions","layouts":"/services/data/v58.0/sobjects/Location/describe/layouts","sobject":"/services/data/v58.0/sobjects/Location"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Change Event","labelPlural":"Location Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Feed","labelPlural":"Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gh","label":"Location + Group","labelPlural":"Location Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroup/describe","quickActions":"/services/data/v58.0/sobjects/LocationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/LocationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gx","label":"Location + Group Assignment","labelPlural":"Location Group Assignments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroupAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroupAssignment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe","layouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroupAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Feed","labelPlural":"Location Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group History","labelPlural":"Location Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LocationGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Share","labelPlural":"Location Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupShare/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + History","labelPlural":"Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Location","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Share","labelPlural":"Location Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationShare/describe","sobject":"/services/data/v58.0/sobjects/LocationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VX","label":"LoginAs + Event","labelPlural":"LoginAs Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginAsEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VY","label":"LoginAs + Event Stream","labelPlural":"LoginAs Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginAsEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginAsEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1HB","label":"Login + Event","labelPlural":"Login Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ll","label":"Login + Event Stream","labelPlural":"Login Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04F","label":"Login + Geo Data","labelPlural":"Login Geo Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginGeo","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginGeo/{ID}","describe":"/services/data/v58.0/sobjects/LoginGeo/describe","sobject":"/services/data/v58.0/sobjects/LoginGeo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ya","label":"Login + History","labelPlural":"Login History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginHistory/{ID}","describe":"/services/data/v58.0/sobjects/LoginHistory/describe","sobject":"/services/data/v58.0/sobjects/LoginHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"710","label":"Login + IP","labelPlural":"Login IP","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginIp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginIp/{ID}","describe":"/services/data/v58.0/sobjects/LoginIp/describe","sobject":"/services/data/v58.0/sobjects/LoginIp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06M","label":"Logout + Event","labelPlural":"Logout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEvent/{ID}","describe":"/services/data/v58.0/sobjects/LogoutEvent/describe","sobject":"/services/data/v58.0/sobjects/LogoutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PH","label":"Logout + Event Stream","labelPlural":"Logout Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LogoutEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LogoutEventStream/describe","sobject":"/services/data/v58.0/sobjects/LogoutEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lookups + from Activity","labelPlural":"Lookups from Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LookedUpFromActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LookedUpFromActivity/{ID}","describe":"/services/data/v58.0/sobjects/LookedUpFromActivity/describe","sobject":"/services/data/v58.0/sobjects/LookedUpFromActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"873","label":"ML + Model","labelPlural":"ML Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModel/describe","sobject":"/services/data/v58.0/sobjects/MLModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"876","label":"ML + Model Factor","labelPlural":"ML Model Factors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactor/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"877","label":"ML + Model Factor Component","labelPlural":"ML Model Factor Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactorComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactorComponent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactorComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"874","label":"ML + Model Metric","labelPlural":"ML Model Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelMetric/{ID}","describe":"/services/data/v58.0/sobjects/MLModelMetric/describe","sobject":"/services/data/v58.0/sobjects/MLModelMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6gt","label":"ML + Prediction Definition","labelPlural":"ML Prediction Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLPredictionDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLPredictionDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLPredictionDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLPredictionDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7gh","label":"ML + Recommendation Definition","labelPlural":"ML Recommendation Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLRecommendationDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLRecommendationDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLRecommendationDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLRecommendationDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JZ","label":"Macro","labelPlural":"Macros","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Macro","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Macro/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Macro/{ID}","describe":"/services/data/v58.0/sobjects/Macro/describe","layouts":"/services/data/v58.0/sobjects/Macro/describe/layouts","sobject":"/services/data/v58.0/sobjects/Macro"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Change Event","labelPlural":"Macro Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + History","labelPlural":"Macro History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroHistory/{ID}","describe":"/services/data/v58.0/sobjects/MacroHistory/describe","sobject":"/services/data/v58.0/sobjects/MacroHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ji","label":"Macro + Instruction","labelPlural":"Macro Instructions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstruction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstruction/{ID}","describe":"/services/data/v58.0/sobjects/MacroInstruction/describe","sobject":"/services/data/v58.0/sobjects/MacroInstruction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MacroInstruction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Instruction Change Event","labelPlural":"Macro Instruction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstructionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Macro","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Share","labelPlural":"Macro Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroShare/describe","sobject":"/services/data/v58.0/sobjects/MacroShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5ML","label":"Macro + Usage","labelPlural":"Macro Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MacroUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MacroUsage/describe","sobject":"/services/data/v58.0/sobjects/MacroUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MacroUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Usage Share","labelPlural":"Macro Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroUsageShare/describe","sobject":"/services/data/v58.0/sobjects/MacroUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01H","label":"Mail + Merge Template","labelPlural":"Mail Merge Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MailmergeTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MailmergeTemplate/{ID}","describe":"/services/data/v58.0/sobjects/MailmergeTemplate/describe","sobject":"/services/data/v58.0/sobjects/MailmergeTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MA","label":"Maintenance + Asset","labelPlural":"Maintenance Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceAsset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAsset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceAsset/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceAsset/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceAsset"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Change Event","labelPlural":"Maintenance Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Feed","labelPlural":"Maintenance Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset History","labelPlural":"Maintenance Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MP","label":"Maintenance + Plan","labelPlural":"Maintenance Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenancePlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenancePlan/describe","quickActions":"/services/data/v58.0/sobjects/MaintenancePlan/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenancePlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Change Event","labelPlural":"Maintenance Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Feed","labelPlural":"Maintenance Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan History","labelPlural":"Maintenance Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenancePlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Share","labelPlural":"Maintenance Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7fc","label":"Maintenance + Work Rule","labelPlural":"Maintenance Work Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceWorkRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceWorkRule/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Change Event","labelPlural":"Maintenance Work Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Feed","labelPlural":"Maintenance Work Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule History","labelPlural":"Maintenance Work Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenanceWorkRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Share","labelPlural":"Maintenance Work Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"20Y","label":"Managed + Content","labelPlural":"Managed Contents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContent/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContent/describe","layouts":"/services/data/v58.0/sobjects/ManagedContent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ap","label":"Managed + Content Channel","labelPlural":"Managed Content Channels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentChannel/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentChannel/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zu","label":"Managed + Content Space","labelPlural":"Managed Content Spaces","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ManagedContentSpace","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentSpace/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentSpace/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentSpace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Ps","label":"Managed + Content Variant","labelPlural":"Managed Content Variants","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariant","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariant/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentVariant/describe","layouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContentVariant"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ManagedContentVariant","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Managed + Content Variant Change Event","labelPlural":"Managed Content Variant Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching + Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching + Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My + Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named + Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note + and Attachment","labelPlural":"Notes and Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"NoteAndAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NoteAndAttachment/{ID}","describe":"/services/data/v58.0/sobjects/NoteAndAttachment/describe","sobject":"/services/data/v58.0/sobjects/NoteAndAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ud","label":"OAuth + Custom Scope","labelPlural":"OAuth Custom Scopes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScope","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScope/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScope/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScope"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ue","label":"OAuth + Custom Scope App ","labelPlural":"OAuth Custom Scope Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScopeApp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScopeApp/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScopeApp/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScopeApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CQ","label":"Oauth + Token","labelPlural":"Oauth Tokens","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthToken","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthToken/{ID}","describe":"/services/data/v58.0/sobjects/OauthToken/describe","sobject":"/services/data/v58.0/sobjects/OauthToken"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"110","label":"Object + Permissions","labelPlural":"Object Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ObjectPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ObjectPermissions/{ID}","describe":"/services/data/v58.0/sobjects/ObjectPermissions/describe","sobject":"/services/data/v58.0/sobjects/ObjectPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UG","label":"Onboarding + Metrics","labelPlural":"Onboarding Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OnboardingMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OnboardingMetrics/{ID}","describe":"/services/data/v58.0/sobjects/OnboardingMetrics/describe","sobject":"/services/data/v58.0/sobjects/OnboardingMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Open + Activity","labelPlural":"Open Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpenActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpenActivity/{ID}","describe":"/services/data/v58.0/sobjects/OpenActivity/describe","sobject":"/services/data/v58.0/sobjects/OpenActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OH","label":"Operating + Hours","labelPlural":"Operating Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHours/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHours/describe","quickActions":"/services/data/v58.0/sobjects/OperatingHours/quickActions","layouts":"/services/data/v58.0/sobjects/OperatingHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHours"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Change Event","labelPlural":"Operating Hours Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Feed","labelPlural":"Operating Hours Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jG","label":"Operating + Hours Holiday","labelPlural":"Operating Hours Holidays","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHoursHoliday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHoliday/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe","layouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHoursHoliday"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHoursHoliday","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Holiday Feed","labelPlural":"Operating Hours Holiday Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursHolidayFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"006","label":"Opportunity","labelPlural":"Opportunities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Opportunity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Opportunity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Opportunity/listviews","describe":"/services/data/v58.0/sobjects/Opportunity/describe","quickActions":"/services/data/v58.0/sobjects/Opportunity/quickActions","layouts":"/services/data/v58.0/sobjects/Opportunity/describe/layouts","sobject":"/services/data/v58.0/sobjects/Opportunity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Change Event","labelPlural":"Opportunity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00J","label":"Opportunity: + Competitor","labelPlural":"Opportunity: Competitor","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityCompetitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityCompetitor/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityCompetitor/describe","sobject":"/services/data/v58.0/sobjects/OpportunityCompetitor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00K","label":"Opportunity + Contact Role","labelPlural":"Opportunity Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRole/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityContactRole/describe","quickActions":"/services/data/v58.0/sobjects/OpportunityContactRole/quickActions","layouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OpportunityContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Contact Role Change Event","labelPlural":"Opportunity Contact Role Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Feed","labelPlural":"Opportunity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFeed/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFeed/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Field History","labelPlural":"Opportunity Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFieldHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"008","label":"Opportunity + History","labelPlural":"Opportunity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00k","label":"Opportunity + Product","labelPlural":"Opportunity Product","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OpportunityLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityLineItem/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityLineItem/describe","layouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityLineItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Opportunity + Partner","labelPlural":"Opportunity Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityPartner/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityPartner/describe","layouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Opportunity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00t","label":"Opportunity + Share","labelPlural":"Opportunity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityShare/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityShare/describe","sobject":"/services/data/v58.0/sobjects/OpportunityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Opportunity + Stage","labelPlural":"Opportunity Stage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityStage","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityStage/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityStage/describe","sobject":"/services/data/v58.0/sobjects/OpportunityStage"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"801","label":"Order","labelPlural":"Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Order","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order/describe","quickActions":"/services/data/v58.0/sobjects/Order/quickActions","layouts":"/services/data/v58.0/sobjects/Order/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Change Event","labelPlural":"Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Feed","labelPlural":"Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + History","labelPlural":"Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"802","label":"Order + Product","labelPlural":"Order Products","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OrderItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OrderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OrderItem/{ID}","describe":"/services/data/v58.0/sobjects/OrderItem/describe","layouts":"/services/data/v58.0/sobjects/OrderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OrderItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Change Event","labelPlural":"Order Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Feed","labelPlural":"Order Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product History","labelPlural":"Order Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fy","label":"Order + Share","labelPlural":"Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderShare/{ID}","describe":"/services/data/v58.0/sobjects/OrderShare/describe","sobject":"/services/data/v58.0/sobjects/OrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Status Value","labelPlural":"Order Status Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/OrderStatus/describe","sobject":"/services/data/v58.0/sobjects/OrderStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Stripe Coupon","labelPlural":"Change Event: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Stripe Coupon","labelPlural":"Share: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1N","label":"Order + Stripe Coupon","labelPlural":"Order Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D3","label":"Organization + Email Address Security","labelPlural":"Organization Email Address Security","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgEmailAddressSecurity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/{ID}","describe":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/describe","sobject":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OL","label":"Org + Lifecycle Notification","labelPlural":"Org Lifecycle Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgLifecycleNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgLifecycleNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrgLifecycleNotification/eventSchema","describe":"/services/data/v58.0/sobjects/OrgLifecycleNotification/describe","sobject":"/services/data/v58.0/sobjects/OrgLifecycleNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3v1","label":"Org + Metric","labelPlural":"Org Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetric/{ID}","describe":"/services/data/v58.0/sobjects/OrgMetric/describe","sobject":"/services/data/v58.0/sobjects/OrgMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9aM","label":"Org + Metric Scan Result","labelPlural":"Org Metric Scan Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanResult/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6mX","label":"Org + Metric Scan Summary","labelPlural":"Org Metric Scan Summaries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanSummary","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanSummary/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanSummary"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D2","label":"Organization-wide + From Email Address","labelPlural":"Organization-wide From Email Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgWideEmailAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgWideEmailAddress/{ID}","describe":"/services/data/v58.0/sobjects/OrgWideEmailAddress/describe","sobject":"/services/data/v58.0/sobjects/OrgWideEmailAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00D","label":"Organization","labelPlural":"Organizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization/{ID}","describe":"/services/data/v58.0/sobjects/Organization/describe","sobject":"/services/data/v58.0/sobjects/Organization"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Organization_Type__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Organization Type","labelPlural":"Change Event: Organization Type","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1O","label":"Organization + Type","labelPlural":"Organization Type","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__c/{ID}","describe":"/services/data/v58.0/sobjects/Organization_Type__c/describe","quickActions":"/services/data/v58.0/sobjects/Organization_Type__c/quickActions","layouts":"/services/data/v58.0/sobjects/Organization_Type__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Organization_Type__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q1","label":"Outgoing + Email","labelPlural":"Outgoing Emails","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmail/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmail/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q3","label":"Outgoing + Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change + Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party + Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Feed","labelPlural":"Party Consent Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent History","labelPlural":"Party Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PartyConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Share","labelPlural":"Party Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentShare/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0aQ","label":"Payment","labelPlural":"Payments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Payment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Payment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Payment/{ID}","describe":"/services/data/v58.0/sobjects/Payment/describe","quickActions":"/services/data/v58.0/sobjects/Payment/quickActions","layouts":"/services/data/v58.0/sobjects/Payment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Payment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9tv","label":"Payment + Authorization Adjustment","labelPlural":"Payment Authorization Adjustments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthAdjustment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthAdjustment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xc","label":"Payment + Authorization","labelPlural":"Payment Authorizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthorization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthorization/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthorization/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthorization/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthorization"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Payment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PaymentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PaymentFeed/describe","sobject":"/services/data/v58.0/sobjects/PaymentFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0b0","label":"Payment + Gateway","labelPlural":"Payment Gateways","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGateway","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGateway/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGateway/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGateway/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGateway"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xt","label":"Payment + Gateway Log","labelPlural":"Payment Gateway Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayLog/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGatewayLog/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cJ","label":"Payment + Gateway Provider","labelPlural":"Payment Gateway Providers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayProvider/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe","layouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9zx","label":"Payment + Group","labelPlural":"Payment Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGroup/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGroup/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGroup/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1PL","label":"Payment + Line Invoice","labelPlural":"Payment Line Invoices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentLineInvoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentLineInvoice/{ID}","describe":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe","quickActions":"/services/data/v58.0/sobjects/PaymentLineInvoice/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentLineInvoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":true,"isSubtype":false,"keyPrefix":"0aa","label":"Payment + Method","labelPlural":"Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentMethod","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/PaymentMethod/describe","layouts":"/services/data/v58.0/sobjects/PaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"026","label":"Period","labelPlural":"Period","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Period","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Period/{ID}","describe":"/services/data/v58.0/sobjects/Period/describe","sobject":"/services/data/v58.0/sobjects/Period"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PS","label":"Permission + Set","labelPlural":"Permission Sets","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSet/describe","sobject":"/services/data/v58.0/sobjects/PermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pa","label":"Permission + Set Assignment","labelPlural":"Permission Set Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetAssignment/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetAssignment/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f3","label":"Permission + Set Event","labelPlural":"Permission Set Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PermissionSetEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PermissionSetEvent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f9","label":"Permission + Set Event Store ","labelPlural":"Permission Set Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEventStore/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetEventStore/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PG","label":"Permission + Set Group","labelPlural":"Permission Set Groups","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSetGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroup/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroup/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PM","label":"Permission + Set Group Component","labelPlural":"Permission Set Group Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetGroupComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroupComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PL","label":"Permission + Set License","labelPlural":"Permission Set Licenses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicense/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicense/describe","layouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/layouts","sobject":"/services/data/v58.0/sobjects/PermissionSetLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2LA","label":"Permission + Set License Assignment","labelPlural":"Permission Set License Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicenseAssign","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01P","label":"Permission + Set Tab Setting","labelPlural":"Permission Set Tab Setting","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetTabSetting","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetTabSetting/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetTabSetting/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetTabSetting"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pv","label":"Picklist + Value Info","labelPlural":"Picklist Value Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PicklistValueInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PicklistValueInfo/{ID}","describe":"/services/data/v58.0/sobjects/PicklistValueInfo/describe","sobject":"/services/data/v58.0/sobjects/PicklistValueInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JV","label":"Platform + Action","labelPlural":"Platform Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformAction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformAction/{ID}","describe":"/services/data/v58.0/sobjects/PlatformAction/describe","sobject":"/services/data/v58.0/sobjects/PlatformAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Er","label":"Platform + Cache Partition","labelPlural":"Platform Cache Partitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartition/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartition/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ev","label":"Platform + Cache Partition Type","labelPlural":"Platform Cache Partition Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartitionType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartitionType/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartitionType/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartitionType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Kk","label":"Platform + Event Usage Metric","labelPlural":"Platform Event Usage Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformEventUsageMetric","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/{ID}","describe":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/describe","sobject":"/services/data/v58.0/sobjects/PlatformEventUsageMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0V2","label":"Platform + Status Alert Event","labelPlural":"Platform Status Alert Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformStatusAlertEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/describe","sobject":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01s","label":"Price + Book","labelPlural":"Price Books","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Pricebook2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Pricebook2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Pricebook2/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2/describe","layouts":"/services/data/v58.0/sobjects/Pricebook2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Pricebook2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Change Event","labelPlural":"Price Book Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book History","labelPlural":"Price Book History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2History/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2History/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01u","label":"Price + Book Entry","labelPlural":"Price Book Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PricebookEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PricebookEntry/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntry/describe","layouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/PricebookEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry Change Event","labelPlural":"Price Book Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry History","labelPlural":"Price Book Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04a","label":"Process + Definition","labelPlural":"Process Definition","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ProcessDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ProcessDefinition/describe","sobject":"/services/data/v58.0/sobjects/ProcessDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Pe","label":"Process + Exception","labelPlural":"Process Exceptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProcessException","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProcessException/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProcessException/describe","quickActions":"/services/data/v58.0/sobjects/ProcessException/quickActions","layouts":"/services/data/v58.0/sobjects/ProcessException/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProcessException"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4v2","label":"Process + Exception Event","labelPlural":"Process Exception Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProcessExceptionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProcessExceptionEvent/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProcessException","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Exception Share","labelPlural":"Process Exception Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionShare/{ID}","describe":"/services/data/v58.0/sobjects/ProcessExceptionShare/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"11Q","label":"Process + Flow Migration","labelPlural":"Process Flow Migration Objects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessFlowMigration","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessFlowMigration/{ID}","describe":"/services/data/v58.0/sobjects/ProcessFlowMigration/describe","sobject":"/services/data/v58.0/sobjects/ProcessFlowMigration"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04g","label":"Process + Instance","labelPlural":"Process Instance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstance","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstance/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstance/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Instance History","labelPlural":"Process Instance History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceHistory/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OO","label":"Process + Instance Node","labelPlural":"Process Instance Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04h","label":"Process + Instance Step","labelPlural":"Process Instance Step","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceStep","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceStep/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceStep/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04i","label":"Approval + Request","labelPlural":"Approval Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceWorkitem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04b","label":"Process + Node","labelPlural":"Process Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessNode","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01t","label":"Product","labelPlural":"Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Product2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Product2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Product2/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Product2/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Product2/describe","quickActions":"/services/data/v58.0/sobjects/Product2/quickActions","layouts":"/services/data/v58.0/sobjects/Product2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Product2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Change Event","labelPlural":"Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Product2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Product2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Product2ChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Feed","labelPlural":"Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2Feed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2Feed/{ID}","describe":"/services/data/v58.0/sobjects/Product2Feed/describe","sobject":"/services/data/v58.0/sobjects/Product2Feed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + History","labelPlural":"Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2History/{ID}","describe":"/services/data/v58.0/sobjects/Product2History/describe","sobject":"/services/data/v58.0/sobjects/Product2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gv","label":"Product + Consumed","labelPlural":"Products Consumed","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductConsumed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumed/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumed/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumed/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumed"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Change Event","labelPlural":"Product Consumed Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Feed","labelPlural":"Product Consumed Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed History","labelPlural":"Product Consumed History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pY","label":"Product + Consumed State","labelPlural":"Product Consumed States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumedState/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumedState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumedState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumedState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed State History","labelPlural":"Product Consumed State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mq","label":"Product + Consumption Schedule","labelPlural":"Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe","layouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumptionSchedule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E9","label":"Product + Entitlement Template","labelPlural":"Product Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductEntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/ProductEntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Co","label":"Product + Item","labelPlural":"Product Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Change Event","labelPlural":"Product Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Feed","labelPlural":"Product Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item History","labelPlural":"Product Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Share","labelPlural":"Product Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemShare/describe","sobject":"/services/data/v58.0/sobjects/ProductItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TR","label":"Product + Item Transaction","labelPlural":"Product Item Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItemTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItemTransaction/describe","quickActions":"/services/data/v58.0/sobjects/ProductItemTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItemTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction Feed","labelPlural":"Product Item Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction History","labelPlural":"Product Item Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TS","label":"Product + Request","labelPlural":"Product Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequest/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequest/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequest"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Change Event","labelPlural":"Product Request Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Feed","labelPlural":"Product Request Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request History ","labelPlural":"Product Request History ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tw","label":"Product + Request Line Item","labelPlural":"Product Request Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequestLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequestLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Change Event","labelPlural":"Product Request Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Feed","labelPlural":"Product Request Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item History ","labelPlural":"Product Request Line Item History + ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Share","labelPlural":"Product Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gn","label":"Product + Required","labelPlural":"Products Required","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequired","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequired/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequired/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequired/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequired/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequired"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Change Event","labelPlural":"Product Required Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Feed","labelPlural":"Product Required Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required History","labelPlural":"Product Required History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iR","label":"Product + Service Campaign","labelPlural":"Product Service Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaign/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaign"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Feed","labelPlural":"Product Service Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign History","labelPlural":"Product Service Campaign History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"23N","label":"Product + Service Campaign Item","labelPlural":"Product Service Campaign Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaignItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Feed","labelPlural":"Product Service Campaign Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item History","labelPlural":"Product Service Campaign Item + History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Status","labelPlural":"Product Service Campaign Item + Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductServiceCampaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Share","labelPlural":"Product Service Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Status","labelPlural":"Product Service Campaign Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lu","label":"Product + Transfer","labelPlural":"Product Transfers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductTransfer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransfer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransfer/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransfer/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransfer"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Change Event","labelPlural":"Product Transfer Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Feed","labelPlural":"Product Transfer Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer History","labelPlural":"Product Transfer History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductTransfer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Share","labelPlural":"Product Transfer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferShare/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0nw","label":"Product + Transfer State","labelPlural":"Product Transfer States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductTransferState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransferState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransferState/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransferState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransferState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransferState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer State History","labelPlural":"Product Transfer State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Uj","label":"Product + Warranty Term","labelPlural":"Product Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductWarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTerm/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/ProductWarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTerm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term Feed","labelPlural":"Product Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term History","labelPlural":"Product Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00e","label":"Profile","labelPlural":"Profile","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Profile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Profile/{ID}","describe":"/services/data/v58.0/sobjects/Profile/describe","sobject":"/services/data/v58.0/sobjects/Profile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sk","label":"Skill","labelPlural":"Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProfileSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkill/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkill/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkill"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SE","label":"Endorsement","labelPlural":"Endorsements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsement"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + Feed","labelPlural":"Endorsement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + History","labelPlural":"Endorsement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Feed","labelPlural":"Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + History","labelPlural":"Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProfileSkill","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Share","labelPlural":"Skill Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillShare/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillShare/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SM","label":"Skill + User","labelPlural":"Skill Users","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillUser/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillUser/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillUser"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User Feed","labelPlural":"Skill User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User History","labelPlural":"Skill User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bs","label":"Prompt","labelPlural":"Prompts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Prompt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Prompt/{ID}","describe":"/services/data/v58.0/sobjects/Prompt/describe","sobject":"/services/data/v58.0/sobjects/Prompt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bu","label":"Prompt + Action","labelPlural":"Prompt Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptAction/describe","sobject":"/services/data/v58.0/sobjects/PromptAction"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptAction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Action Share","labelPlural":"Prompt Action Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptActionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptActionShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptActionShare/describe","sobject":"/services/data/v58.0/sobjects/PromptActionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4Dr","label":"Prompt + Error","labelPlural":"Prompt Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptError","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptError/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptError/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptError/describe","sobject":"/services/data/v58.0/sobjects/PromptError"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptError","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Error Share","labelPlural":"Prompt Error Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptErrorShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptErrorShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptErrorShare/describe","sobject":"/services/data/v58.0/sobjects/PromptErrorShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bt","label":"Prompt + Version","labelPlural":"Prompt Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptVersion/{ID}","describe":"/services/data/v58.0/sobjects/PromptVersion/describe","sobject":"/services/data/v58.0/sobjects/PromptVersion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pb","label":"Publisher","labelPlural":"Publishers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Publisher","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Publisher/{ID}","describe":"/services/data/v58.0/sobjects/Publisher/describe","sobject":"/services/data/v58.0/sobjects/Publisher"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IF","label":"Push + Topic","labelPlural":"Push Topics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PushTopic","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PushTopic/{ID}","describe":"/services/data/v58.0/sobjects/PushTopic/describe","sobject":"/services/data/v58.0/sobjects/PushTopic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03g","label":"Queue + sObject","labelPlural":"Queue sObjects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QueueSobject","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QueueSobject/{ID}","describe":"/services/data/v58.0/sobjects/QueueSobject/describe","sobject":"/services/data/v58.0/sobjects/QueueSobject"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"574","label":"Quick + Text","labelPlural":"Quick Text","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"QuickText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/QuickText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/QuickText/{ID}","describe":"/services/data/v58.0/sobjects/QuickText/describe","layouts":"/services/data/v58.0/sobjects/QuickText/describe/layouts","sobject":"/services/data/v58.0/sobjects/QuickText"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Change Event","labelPlural":"Quick Text Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/QuickTextChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/QuickTextChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/QuickTextChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text History","labelPlural":"Quick Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextHistory/describe","sobject":"/services/data/v58.0/sobjects/QuickTextHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickText","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Share","labelPlural":"Quick Text Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5QL","label":"Quick + Text Usage","labelPlural":"Quick Text Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/QuickTextUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/QuickTextUsage/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickTextUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Usage Share","labelPlural":"Quick Text Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextUsageShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QR","label":"Quote + Template Rich Text Data","labelPlural":"Quote Template Rich Text Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuoteTemplateRichTextData","queryable":false,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/{ID}","describe":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/describe","sobject":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Line_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Stripe Coupon Association","labelPlural":"Change Event: + Quote Line Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1P","label":"Quote + Line Stripe Coupon Association","labelPlural":"Quote Line Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon Association","labelPlural":"Change Event: Quote + Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1Q","label":"Quote + Stripe Coupon Association","labelPlural":"Quote Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon","labelPlural":"Change Event: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Quote_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Stripe Coupon","labelPlural":"Share: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1R","label":"Quote + Stripe Coupon","labelPlural":"Quote Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recently + Viewed","labelPlural":"Recently Viewed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecentlyViewed","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecentlyViewed/{ID}","describe":"/services/data/v58.0/sobjects/RecentlyViewed/describe","sobject":"/services/data/v58.0/sobjects/RecentlyViewed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pr","label":"Recommendation","labelPlural":"Recommendations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Recommendation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Recommendation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Recommendation/{ID}","describe":"/services/data/v58.0/sobjects/Recommendation/describe","layouts":"/services/data/v58.0/sobjects/Recommendation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Recommendation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Recommendation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recommendation + Change Event","labelPlural":"Recommendation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecommendationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecommendationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecommendationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rr","label":"Recommendation + Response","labelPlural":"Recommendation Responses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationResponse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationResponse/{ID}","describe":"/services/data/v58.0/sobjects/RecommendationResponse/describe","sobject":"/services/data/v58.0/sobjects/RecommendationResponse"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rw","label":"RecordAction","labelPlural":"RecordActions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordAction/{ID}","describe":"/services/data/v58.0/sobjects/RecordAction/describe","sobject":"/services/data/v58.0/sobjects/RecordAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ub","label":"RecordActionHistory","labelPlural":"RecordActionHistories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordActionHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordActionHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordActionHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordActionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"012","label":"Record + Type","labelPlural":"Record Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"RecordType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordType/{ID}","describe":"/services/data/v58.0/sobjects/RecordType/describe","sobject":"/services/data/v58.0/sobjects/RecordType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hr","label":"Recordset + Filter Criteria","labelPlural":"Recordset Filter Criteria","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteria"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Change Event","labelPlural":"Recordset Filter Criteria Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria History","labelPlural":"Recordset Filter Criteria History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hK","label":"Recordset + Filter Criteria Rule","labelPlural":"Recordset Filter Criteria Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteriaRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteriaRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Rule Change Event","labelPlural":"Recordset Filter Criteria + Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"RecordsetFilterCriteria","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Share","labelPlural":"Recordset Filter Criteria Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0yH","label":"Recordset + Filter Criteria Monitor","labelPlural":"Recordset Filter Criteria Monitors","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFltrCritMonitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Change Event","labelPlural":"Recordset Filter Criteria + Monitor Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Feed","labelPlural":"Recordset Filter Criteria Monitor + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor History","labelPlural":"Recordset Filter Criteria + Monitor History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9V6","label":"Allow + URL for Redirects","labelPlural":"Allow URLs for Redirects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RedirectWhitelistUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/{ID}","describe":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/describe","sobject":"/services/data/v58.0/sobjects/RedirectWhitelistUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cb","label":"Refund","labelPlural":"Refunds","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Refund","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Refund/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Refund/{ID}","describe":"/services/data/v58.0/sobjects/Refund/describe","quickActions":"/services/data/v58.0/sobjects/Refund/quickActions","layouts":"/services/data/v58.0/sobjects/Refund/describe/layouts","sobject":"/services/data/v58.0/sobjects/Refund"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dR","label":"Refund + Line Payment","labelPlural":"Refund Line Payments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"RefundLinePayment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RefundLinePayment/{ID}","describe":"/services/data/v58.0/sobjects/RefundLinePayment/describe","quickActions":"/services/data/v58.0/sobjects/RefundLinePayment/quickActions","layouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/layouts","sobject":"/services/data/v58.0/sobjects/RefundLinePayment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rc","label":"Related + List Column Definition","labelPlural":"Related List Column Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListColumnDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListColumnDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rl","label":"Related + List Definition","labelPlural":"Related List Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jv","label":"Relationship + Domain","labelPlural":"Relationship Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipDomain","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipDomain/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipDomain/describe","sobject":"/services/data/v58.0/sobjects/RelationshipDomain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ju","label":"Relationship","labelPlural":"Relationships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipInfo/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipInfo/describe","sobject":"/services/data/v58.0/sobjects/RelationshipInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VA","label":"Remote + Key Callout Event","labelPlural":"Remote Key Callout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RemoteKeyCalloutEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/describe","sobject":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00O","label":"Report","labelPlural":"Reports","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Report","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Report/{ID}","listviews":"/services/data/v58.0/sobjects/Report/listviews","describe":"/services/data/v58.0/sobjects/Report/describe","sobject":"/services/data/v58.0/sobjects/Report"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yv","label":"Report + Anomaly Event","labelPlural":"Report Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReportAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Z7","label":"Report + Anomaly Event Store","labelPlural":"Report Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReportAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReportAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Anomaly Event Store Feed","labelPlural":"Report Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qu","label":"Report + Event","labelPlural":"Report Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEvent/{ID}","describe":"/services/data/v58.0/sobjects/ReportEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ol","label":"Report + Event Stream","labelPlural":"Report Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ReportEventStream/describe","sobject":"/services/data/v58.0/sobjects/ReportEventStream"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Report","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Feed","labelPlural":"Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hw","label":"Resource + Absence","labelPlural":"Resource Absences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourceAbsence","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsence/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourceAbsence/describe","quickActions":"/services/data/v58.0/sobjects/ResourceAbsence/quickActions","layouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourceAbsence"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Change Event","labelPlural":"Resource Absence Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Feed","labelPlural":"Resource Absence Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence History","labelPlural":"Resource Absence History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kz","label":"Resource + Preference","labelPlural":"Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourcePreference/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourcePreference/describe","layouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourcePreference"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Change Event","labelPlural":"Resource Preference Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Feed","labelPlural":"Resource Preference Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference History","labelPlural":"Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2oN","label":"Return + Order","labelPlural":"Return Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrder/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrder/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Change Event","labelPlural":"Return Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Feed","labelPlural":"Return Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order History","labelPlural":"Return Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sn","label":"Return + Order Line Item","labelPlural":"Return Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Change Event","labelPlural":"Return Order Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Feed","labelPlural":"Return Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item History","labelPlural":"Return Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ReturnOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Share","labelPlural":"Return Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderShare/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Set","labelPlural":"Change Event: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__AttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Attribute Set","labelPlural":"Share: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a00","label":"Attribute + Set","labelPlural":"Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__AttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Value","labelPlural":"Change Event: Attribute Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a01","label":"Attribute + Value","labelPlural":"Attribute Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__BlockPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Block Price","labelPlural":"Change Event: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__BlockPrice__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Block Price","labelPlural":"Share: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a02","label":"Block + Price","labelPlural":"Block Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ColumnMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Column Metadata","labelPlural":"Change Event: Column Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ColumnMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a04","label":"Column + Metadata","labelPlural":"Columns Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ColumnMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Attribute","labelPlural":"Change Event: Configuration + Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Configuration Attribute","labelPlural":"Share: Configuration Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a05","label":"Configuration + Attribute","labelPlural":"Configuration Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ConfigurationAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Rule","labelPlural":"Change Event: Configuration Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a06","label":"Configuration + Rule","labelPlural":"Configuration Rules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Contracted Price","labelPlural":"Change Event: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Contracted Price","labelPlural":"History: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a07","label":"Contracted + Price","labelPlural":"Contracted Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Cost__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Cost","labelPlural":"Change Event: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Cost__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Cost","labelPlural":"Share: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a08","label":"Cost","labelPlural":"Costs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Cost__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomActionCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action Condition","labelPlural":"Change Event: Custom Action + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a09","label":"Custom + Action Condition","labelPlural":"Custom Action Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action","labelPlural":"Change Event: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomAction__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Action","labelPlural":"Share: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0A","label":"Custom + Action","labelPlural":"Custom Actions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomScript__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Script","labelPlural":"Change Event: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomScript__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Script","labelPlural":"Share: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0C","label":"Custom + Script","labelPlural":"Custom Scripts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomScript__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Dimension__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Dimension","labelPlural":"Change Event: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Dimension__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Dimension","labelPlural":"Share: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0D","label":"Price + Dimension","labelPlural":"Price Dimensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountCategory__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Category","labelPlural":"Change Event: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountCategory__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Category","labelPlural":"Share: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0E","label":"Discount + Category","labelPlural":"Discount Categories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountCategory__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Schedule","labelPlural":"Change Event: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Schedule","labelPlural":"History: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Schedule","labelPlural":"Share: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0G","label":"Discount + Schedule","labelPlural":"Discount Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Tier","labelPlural":"Change Event: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Tier","labelPlural":"History: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0H","label":"Discount + Tier","labelPlural":"Discount Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ErrorCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Condition","labelPlural":"Change Event: Error Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0I","label":"Error + Condition","labelPlural":"Error Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteProduct__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Product","labelPlural":"Change Event: Favorite Product","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0J","label":"Favorite + Product","labelPlural":"Favorite Product","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteShare__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Share","labelPlural":"Change Event: Favorite Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0K","label":"Favorite + Share","labelPlural":"Favorite Shares","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Favorite__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite","labelPlural":"Change Event: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Favorite__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Favorite","labelPlural":"Share: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0L","label":"Favorite","labelPlural":"Favorites","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Favorite__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Field Metadata","labelPlural":"Change Event: Field Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0M","label":"Field + Metadata","labelPlural":"Field Metadata","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: FieldSet Metadata","labelPlural":"Change Event: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + FieldSet Metadata","labelPlural":"Share: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0N","label":"FieldSet + Metadata","labelPlural":"FieldSets Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__FieldSetMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Column","labelPlural":"Change Event: Import Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Q","label":"Import + Column","labelPlural":"Import Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportFormat__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Format","labelPlural":"Change Event: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ImportFormat__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Import Format","labelPlural":"Share: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0R","label":"Import + Format","labelPlural":"Import Formats","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ImportFormat__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Install Processor Log","labelPlural":"Change Event: Install Processor + Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Install Processor Log","labelPlural":"Share: Install Processor Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0S","label":"Install + Processor Log","labelPlural":"Install Processor Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__InstallProcessorLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LineColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Line Column","labelPlural":"Change Event: Line Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0T","label":"Line + Column","labelPlural":"Line Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Localization__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Localization","labelPlural":"Change Event: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Localization__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Localization","labelPlural":"Share: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0U","label":"Localization","labelPlural":"Localizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Localization__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Localization__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupData__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Data","labelPlural":"Change Event: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupData__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Data","labelPlural":"Share: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0V","label":"Lookup + Data","labelPlural":"Lookup Data","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupQuery__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Query","labelPlural":"Change Event: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupQuery__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Query","labelPlural":"Share: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0W","label":"Lookup + Query","labelPlural":"Lookup Queries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OptionConstraint__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Option Constraint","labelPlural":"Change Event: Option Constraint","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0X","label":"Option + Constraint","labelPlural":"Option Constraints","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Rate","labelPlural":"Change Event: Order + Product Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Y","label":"Order + Product Consumption Rate","labelPlural":"Order Product Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Schedule","labelPlural":"Change Event: Order + Product Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Product Consumption Schedule","labelPlural":"Share: Order Product Consumption + Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Z","label":"Order + Product Consumption Schedule","labelPlural":"Order Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Action","labelPlural":"Change Event: Price Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0a","label":"Price + Action","labelPlural":"Price Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Condition","labelPlural":"Change Event: Price Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0b","label":"Price + Condition","labelPlural":"Price Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Rule","labelPlural":"Change Event: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Rule","labelPlural":"Share: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0c","label":"Price + Rule","labelPlural":"Price Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PriceRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Schedule","labelPlural":"Change Event: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Schedule","labelPlural":"History: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Schedule","labelPlural":"Share: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0d","label":"Price + Schedule","labelPlural":"Price Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Tier","labelPlural":"Change Event: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Tier","labelPlural":"History: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0e","label":"Price + Tier","labelPlural":"Price Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance Tier","labelPlural":"Change Event: Pricing Guidance + Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance Tier","labelPlural":"History: Pricing Guidance Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0f","label":"Pricing + Guidance Tier","labelPlural":"Pricing Guidance Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance","labelPlural":"Change Event: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance","labelPlural":"History: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PricingGuidance__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Pricing Guidance","labelPlural":"Share: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0g","label":"Pricing + Guidance","labelPlural":"Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Condition","labelPlural":"Change Event: Process Input + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0h","label":"Process + Input Condition","labelPlural":"Process Input Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Values","labelPlural":"Change Event: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Process Input Values","labelPlural":"Share: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0i","label":"Process + Input Values","labelPlural":"Process Input Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInput__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input","labelPlural":"Change Event: Process Input","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0j","label":"Process + Input","labelPlural":"Process Inputs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Action","labelPlural":"Change Event: Product Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0k","label":"Product + Action","labelPlural":"Product Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Attribute Set","labelPlural":"Change Event: Product Attribute + Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Attribute Set","labelPlural":"Share: Product Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0l","label":"Product + Attribute Set","labelPlural":"Product Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Item","labelPlural":"Change Event: Attribute Item","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0m","label":"Attribute + Item","labelPlural":"Attribute Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductFeature__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Feature","labelPlural":"Change Event: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductFeature__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Feature","labelPlural":"Share: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0n","label":"Product + Feature","labelPlural":"Product Features","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductOption__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Option","labelPlural":"Change Event: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductOption__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Option","labelPlural":"Share: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0o","label":"Product + Option","labelPlural":"Product Options","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Rule","labelPlural":"Change Event: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Rule","labelPlural":"Share: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0p","label":"Product + Rule","labelPlural":"Product Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ProductRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Document","labelPlural":"Change Event: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Document","labelPlural":"History: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0q","label":"Quote + Document","labelPlural":"Quote Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Rate","labelPlural":"Change Event: Quote Line + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0r","label":"Quote + Line Consumption Rate","labelPlural":"Quote Line Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Schedule","labelPlural":"Change Event: Quote + Line Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0s","label":"Quote + Line Consumption Schedule","labelPlural":"Quote Line Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Group","labelPlural":"Change Event: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Group","labelPlural":"History: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0t","label":"Quote + Line Group","labelPlural":"Quote Line Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Pricing Guidance","labelPlural":"Change Event: Quote Line + Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Pricing Guidance","labelPlural":"History: Quote Line Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0u","label":"Quote + Line Pricing Guidance","labelPlural":"Quote Line Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line","labelPlural":"Change Event: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line","labelPlural":"History: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0v","label":"Quote + Line","labelPlural":"Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteProcess__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Process","labelPlural":"Change Event: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteProcess__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Process","labelPlural":"Share: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0w","label":"Quote + Process","labelPlural":"Quote Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteProcess__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Template","labelPlural":"Change Event: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Template","labelPlural":"History: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Template","labelPlural":"Share: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0x","label":"Quote + Template","labelPlural":"Quote Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTemplate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTerm__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Term","labelPlural":"Change Event: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTerm__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Term","labelPlural":"Share: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0y","label":"Quote + Term","labelPlural":"Quote Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTerm__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote","labelPlural":"Change Event: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote","labelPlural":"History: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Quote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote","labelPlural":"Share: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0z","label":"Quote","labelPlural":"Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Quote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Quote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RecordJob__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Record Job","labelPlural":"Change Event: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RecordJob__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Record Job","labelPlural":"Share: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a10","label":"Record + Job","labelPlural":"Record Jobs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RelatedContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Additional Document","labelPlural":"Change Event: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RelatedContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Additional Document","labelPlural":"Share: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a12","label":"Additional + Document","labelPlural":"Additional Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchFilter__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Filter","labelPlural":"Change Event: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchFilter__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Filter","labelPlural":"Share: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a14","label":"Search + Filter","labelPlural":"Search Filters","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SearchFilter__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchIndex__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Index","labelPlural":"Change Event: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchIndex__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Index","labelPlural":"Share: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a15","label":"Search + Index","labelPlural":"Search Index","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Solution Group","labelPlural":"Change Event: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Solution Group","labelPlural":"History: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SolutionGroup__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Solution Group","labelPlural":"Share: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a16","label":"Solution + Group","labelPlural":"Solution Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SolutionGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedAsset__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Asset","labelPlural":"Change Event: Subscribed Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a17","label":"Subscribed + Asset","labelPlural":"Subscribed Assets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Quote Line","labelPlural":"Change Event: Subscribed Quote + Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscribed Quote Line","labelPlural":"Share: Subscribed Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a18","label":"Subscribed + Quote Line","labelPlural":"Subscribed Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Rate","labelPlural":"Change Event: Subscription + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a19","label":"Subscription + Consumption Rate","labelPlural":"Subscription Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Schedule","labelPlural":"Change Event: Subscription + Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1A","label":"Subscription + Consumption Schedule","labelPlural":"Subscription Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Subscription__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription","labelPlural":"Change Event: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Subscription__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscription","labelPlural":"Share: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1B","label":"Subscription","labelPlural":"Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SummaryVariable__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Summary Variable","labelPlural":"Change Event: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SummaryVariable__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Summary Variable","labelPlural":"Share: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1C","label":"Summary + Variable","labelPlural":"Summary Variables","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SummaryVariable__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TaxExemptionCertificate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Tax Exemption Certificate","labelPlural":"Change Event: Tax Exemption + Certificate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1D","label":"Tax + Exemption Certificate","labelPlural":"Tax Exemption Certificates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Content","labelPlural":"Change Event: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TemplateContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Template Content","labelPlural":"Share: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1E","label":"Template + Content","labelPlural":"Template Content","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__TemplateContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateSection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Section","labelPlural":"Change Event: Template Section","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1F","label":"Template + Section","labelPlural":"Template Sections","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TermCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Term Condition","labelPlural":"Change Event: Term Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1G","label":"Term + Condition","labelPlural":"Term Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Theme__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Theme","labelPlural":"Change Event: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Theme__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Theme","labelPlural":"Share: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1H","label":"Theme","labelPlural":"Themes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Theme__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Theme__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TimingLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Timing Log","labelPlural":"Change Event: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TimingLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Timing Log","labelPlural":"Share: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1I","label":"Timing + Log","labelPlural":"Timing Logs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__UpgradeSource__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Upgrade Source","labelPlural":"Change Event: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__UpgradeSource__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Upgrade Source","labelPlural":"Share: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1J","label":"Upgrade + Source","labelPlural":"Upgrade Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote Line","labelPlural":"Change Event: Web Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1K","label":"Web + Quote Line","labelPlural":"Web Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote","labelPlural":"Change Event: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Web Quote","labelPlural":"History: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__WebQuote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Web Quote","labelPlural":"Share: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1L","label":"Web + Quote","labelPlural":"Web Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__WebQuote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J4","label":"Service + Provider SAML Attribute","labelPlural":"Service Provider SAML Attributes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SPSamlAttributes","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SPSamlAttributes/{ID}","describe":"/services/data/v58.0/sobjects/SPSamlAttributes/describe","sobject":"/services/data/v58.0/sobjects/SPSamlAttributes"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0LE","label":"SAML + Single Sign-On Setting","labelPlural":"SAML Single Sign-On Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SamlSsoConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SamlSsoConfig/{ID}","describe":"/services/data/v58.0/sobjects/SamlSsoConfig/describe","sobject":"/services/data/v58.0/sobjects/SamlSsoConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hA","label":"Scheduling + Constraint","labelPlural":"Scheduling Constraints","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingConstraint","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraint/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SchedulingConstraint/describe","layouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingConstraint"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SchedulingConstraint","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scheduling + Constraint Share","labelPlural":"Scheduling Constraint Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingConstraintShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraintShare/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingConstraintShare/describe","sobject":"/services/data/v58.0/sobjects/SchedulingConstraintShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0no","label":"Scheduling + Objective","labelPlural":"Scheduling Objectives","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingObjective","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjective/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjective/describe","layouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingObjective"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0np","label":"Scheduling + Objective Parameter","labelPlural":"Scheduling Objective Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingObjectiveParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Md","label":"Scheduling + Rule","labelPlural":"Scheduling Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingRule/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRule/describe","layouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hm","label":"Scheduling + Rule Parameter","labelPlural":"Scheduling Rule Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingRuleParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingRuleParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRuleParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingRuleParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01N","label":"Custom + S-Control","labelPlural":"Custom S-Controls","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Scontrol","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Scontrol/{ID}","describe":"/services/data/v58.0/sobjects/Scontrol/describe","sobject":"/services/data/v58.0/sobjects/Scontrol"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01f","label":"Scorecard","labelPlural":"Scorecards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Scorecard","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Scorecard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Scorecard/{ID}","describe":"/services/data/v58.0/sobjects/Scorecard/describe","layouts":"/services/data/v58.0/sobjects/Scorecard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Scorecard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qn","label":"Scorecard + Association","labelPlural":"Scorecard Associations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ScorecardAssociation","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardAssociation/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardAssociation/describe","layouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardAssociation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Om","label":"Scorecard + Metric","labelPlural":"Scorecard Metrics","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ScorecardMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardMetric/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardMetric/describe","layouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardMetric"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Scorecard","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scorecard + Share","labelPlural":"Scorecard Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ScorecardShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ScorecardShare/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardShare/describe","sobject":"/services/data/v58.0/sobjects/ScorecardShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4co","label":"Search + Layout","labelPlural":"Search Layouts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SearchLayout","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchLayout/{ID}","describe":"/services/data/v58.0/sobjects/SearchLayout/describe","sobject":"/services/data/v58.0/sobjects/SearchLayout"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MD","label":"Promoted + Search Term","labelPlural":"Promoted Search Terms","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SearchPromotionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchPromotionRule/{ID}","describe":"/services/data/v58.0/sobjects/SearchPromotionRule/describe","layouts":"/services/data/v58.0/sobjects/SearchPromotionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SearchPromotionRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09v","label":"Security + Custom Baseline","labelPlural":"Security Custom Baselines","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SecurityCustomBaseline","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SecurityCustomBaseline/{ID}","describe":"/services/data/v58.0/sobjects/SecurityCustomBaseline/describe","sobject":"/services/data/v58.0/sobjects/SecurityCustomBaseline"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0q6","label":"Seller","labelPlural":"Sellers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Seller","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Seller/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Seller/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Seller/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Seller/describe","layouts":"/services/data/v58.0/sobjects/Seller/describe/layouts","sobject":"/services/data/v58.0/sobjects/Seller"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Seller","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + History","labelPlural":"Seller History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerHistory/{ID}","describe":"/services/data/v58.0/sobjects/SellerHistory/describe","sobject":"/services/data/v58.0/sobjects/SellerHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Seller","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + Share","labelPlural":"Seller Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerShare/{ID}","describe":"/services/data/v58.0/sobjects/SellerShare/describe","sobject":"/services/data/v58.0/sobjects/SellerShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sentry_Active_Config__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sentry Active Config","labelPlural":"Change Event: Sentry Active Config","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1S","label":"Sentry + Active Config","labelPlural":"Sentry Active Config","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe","quickActions":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m00","label":"Sentry + Config","labelPlural":"Sentry Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sentry_Config__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Config__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe","layouts":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Config__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"e00","label":"Sentry + Error","labelPlural":"Sentry Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Error__e","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Error__e/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Error__e/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Error__e/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Error__e"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jR","label":"Serialized + Product","labelPlural":"Serialized Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProduct","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProduct/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProduct/describe","quickActions":"/services/data/v58.0/sobjects/SerializedProduct/quickActions","layouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProduct"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Feed","labelPlural":"Serialized Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product History","labelPlural":"Serialized Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SerializedProduct","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Share","labelPlural":"Serialized Product Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductShare/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductShare/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jM","label":"Serialized + Product Transaction","labelPlural":"Serialized Product Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProductTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe","layouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProductTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction Feed","labelPlural":"Serialized Product Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction History","labelPlural":"Serialized Product Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08p","label":"Service + Appointment","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Share","labelPlural":"Service Appointment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Status Value","labelPlural":"Service Appointment Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"810","label":"Service + Contract","labelPlural":"Service Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceContract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceContract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceContract/describe","quickActions":"/services/data/v58.0/sobjects/ServiceContract/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceContract/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceContract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Change Event","labelPlural":"Service Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Feed","labelPlural":"Service Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract History","labelPlural":"Service Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceContract","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Share","labelPlural":"Service Contract Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cr","label":"Service + Crew","labelPlural":"Service Crews","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrew","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrew/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrew/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrew/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrew"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Change Event","labelPlural":"Service Crew Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Feed","labelPlural":"Service Crew Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew History","labelPlural":"Service Crew History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cm","label":"Service + Crew Member","labelPlural":"Service Crew Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrewMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrewMember/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrewMember/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrewMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Change Event","labelPlural":"Service Crew Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Feed","labelPlural":"Service Crew Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member History","labelPlural":"Service Crew Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceCrew","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Share","labelPlural":"Service Crew Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SR","label":"Service + Report","labelPlural":"Service Reports","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReport/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReport/describe","sobject":"/services/data/v58.0/sobjects/ServiceReport"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Change Event","labelPlural":"Service Report Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report History","labelPlural":"Service Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SL","label":"Service + Report Layout","labelPlural":"Service Report Layouts","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ServiceReportLayout","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayout/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportLayout/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayout"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReportLayout","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Layout Change Event","labelPlural":"Service Report Layout Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportLayoutChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hn","label":"Service + Resource","labelPlural":"Service Resources","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResource/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResource/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hy","label":"Resource + Capacity","labelPlural":"Resource Capacities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceCapacity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourceCapacity/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Change Event","labelPlural":"Resource Capacity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Feed","labelPlural":"Resource Capacity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity History","labelPlural":"Resource Capacity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Change Event","labelPlural":"Service Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Feed","labelPlural":"Service Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource History","labelPlural":"Service Resource History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0l6","label":"Service + Resource Preference","labelPlural":"Service Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreference/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourcePreference/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreference"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ServiceResourcePreference not found in section + StandardFeedLabel","labelPlural":"__MISSING LABEL__ PropertyFile - val ServiceResourcePreference + not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference History","labelPlural":"Service Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResourcePreference","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference Share","labelPlural":"Service Resource Preference Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResource","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Share","labelPlural":"Service Resource Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hv","label":"Service + Resource Skill","labelPlural":"Service Resource Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe","layouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Change Event","labelPlural":"Service Resource Skill Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Feed","labelPlural":"Service Resource Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill History","labelPlural":"Service Resource Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9gd","label":"Service + Setup Provisioning","labelPlural":"Service Setup Provisionings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceSetupProvisioning","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/{ID}","describe":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/describe","sobject":"/services/data/v58.0/sobjects/ServiceSetupProvisioning"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hh","label":"Service + Territory","labelPlural":"Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritory/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritory/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritory/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Change Event","labelPlural":"Service Territory Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Feed","labelPlural":"Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory History","labelPlural":"Service Territory History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1Sl","label":"Service + Territory Location","labelPlural":"Service Territory Locations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Change Event","labelPlural":"Service Territory Location + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Feed","labelPlural":"Service Territory Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Territory + Location History","labelPlural":"Territory Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hu","label":"Service + Territory Member","labelPlural":"Service Territory Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritoryMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Change Event","labelPlural":"Service Territory Member Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Feed","labelPlural":"Service Territory Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member History","labelPlural":"Service Territory Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceTerritory","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Share","labelPlural":"Service Territory Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zh","label":"Session + Hijacking Event","labelPlural":"Session Hijacking Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SessionHijackingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SessionHijackingEvent/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zj","label":"Session + Hijacking Event Store","labelPlural":"Session Hijacking Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SessionHijackingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/SessionHijackingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SessionHijackingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Session + Hijacking Event Store Feed","labelPlural":"Session Hijacking Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Pa","label":"Session + Permission Set Activation","labelPlural":"Session Permission Set Activations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SessionPermSetActivation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionPermSetActivation/{ID}","describe":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe","layouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionPermSetActivation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Ys","label":"Setup + Assistant Step","labelPlural":"Setup Assistant Steps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAssistantStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAssistantStep/{ID}","describe":"/services/data/v58.0/sobjects/SetupAssistantStep/describe","sobject":"/services/data/v58.0/sobjects/SetupAssistantStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ym","label":"Setup + Audit Trail Entry","labelPlural":"Setup Audit Trail Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAuditTrail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAuditTrail/{ID}","describe":"/services/data/v58.0/sobjects/SetupAuditTrail/describe","sobject":"/services/data/v58.0/sobjects/SetupAuditTrail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J0","label":"Setup + Entity Access","labelPlural":"Setup Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/SetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/SetupEntityAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m01","label":"Setup + Configuration Data","labelPlural":"Setup Configuration Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Configuration_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m02","label":"Setup + Connection Data","labelPlural":"Setup Connection Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Connection_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Data__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Data","labelPlural":"Change Event: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Setup_Data__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Setup Data","labelPlural":"Share: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__Share/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Data__Share/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1T","label":"Setup + Data","labelPlural":"Setup Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Data__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Setup_Data__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Data__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Data__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Settings__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Settings","labelPlural":"Change Event: Setup Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1U","label":"Setup + Settings","labelPlural":"Setup Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__c/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Settings__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Settings__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Settings__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Settings__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0a0","label":"Shift","labelPlural":"Shifts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shift","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shift/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shift/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shift/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shift/describe","quickActions":"/services/data/v58.0/sobjects/Shift/quickActions","layouts":"/services/data/v58.0/sobjects/Shift/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shift"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Change Event","labelPlural":"Shift Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Feed","labelPlural":"Shift Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + History","labelPlural":"Shift History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w1","label":"Shift + Pattern","labelPlural":"Shift Patterns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPattern","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPattern/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShiftPattern/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPattern/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPattern"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Change Event","labelPlural":"Shift Pattern Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w2","label":"Shift + Pattern Entry","labelPlural":"Shift Pattern Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPatternEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntry/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPatternEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Change Event","labelPlural":"Shift Pattern Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Feed","labelPlural":"Shift Pattern Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry History","labelPlural":"Shift Pattern Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Feed","labelPlural":"Shift Pattern Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern History","labelPlural":"Shift Pattern History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftPattern","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Share","labelPlural":"Shift Pattern Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shift","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Share","labelPlural":"Shift Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Status Value","labelPlural":"Shift Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftStatus/{ID}","describe":"/services/data/v58.0/sobjects/ShiftStatus/describe","sobject":"/services/data/v58.0/sobjects/ShiftStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iJ","label":"Shift + Template","labelPlural":"Shift Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplate/describe","layouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Change Event","labelPlural":"Shift Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Share","labelPlural":"Shift Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OB","label":"Shipment","labelPlural":"Shipments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shipment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shipment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shipment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shipment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shipment/describe","quickActions":"/services/data/v58.0/sobjects/Shipment/quickActions","layouts":"/services/data/v58.0/sobjects/Shipment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shipment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Change Event","labelPlural":"Shipment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShipmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShipmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShipmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Feed","labelPlural":"Shipment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + History","labelPlural":"Shipment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ob","label":"Shipment + Item","labelPlural":"Shipment Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ShipmentItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShipmentItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShipmentItem/describe","quickActions":"/services/data/v58.0/sobjects/ShipmentItem/quickActions","layouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShipmentItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shipment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Share","labelPlural":"Shipment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentShare/describe","sobject":"/services/data/v58.0/sobjects/ShipmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DM","label":"Site","labelPlural":"Sites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Site","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Site/{ID}","describe":"/services/data/v58.0/sobjects/Site/describe","sobject":"/services/data/v58.0/sobjects/Site"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GV","label":"Site + Detail","labelPlural":"Site Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteDetail/{ID}","describe":"/services/data/v58.0/sobjects/SiteDetail/describe","sobject":"/services/data/v58.0/sobjects/SiteDetail"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site","labelPlural":"Site","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteFeed/{ID}","describe":"/services/data/v58.0/sobjects/SiteFeed/describe","sobject":"/services/data/v58.0/sobjects/SiteFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site + History","labelPlural":"Site History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteHistory/{ID}","describe":"/services/data/v58.0/sobjects/SiteHistory/describe","sobject":"/services/data/v58.0/sobjects/SiteHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xs","label":"Trusted + Domains for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteIframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H0","label":"Site + Redirect Mapping","labelPlural":"Site Redirect Mapping","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteRedirectMapping","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteRedirectMapping/{ID}","describe":"/services/data/v58.0/sobjects/SiteRedirectMapping/describe","sobject":"/services/data/v58.0/sobjects/SiteRedirectMapping"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C5","label":"Skill","labelPlural":"Skills","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Skill","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Skill/{ID}","describe":"/services/data/v58.0/sobjects/Skill/describe","sobject":"/services/data/v58.0/sobjects/Skill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Skill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Change Event","labelPlural":"Skill Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hx","label":"Skill + Requirement","labelPlural":"Skill Requirements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SkillRequirement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SkillRequirement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SkillRequirement/describe","layouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/layouts","sobject":"/services/data/v58.0/sobjects/SkillRequirement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Change Event","labelPlural":"Skill Requirement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Feed","labelPlural":"Skill Requirement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementFeed/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementFeed/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement History","labelPlural":"Skill Requirement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementHistory/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementHistory/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"13B","label":"Skill + Type","labelPlural":"Skill Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillType/{ID}","describe":"/services/data/v58.0/sobjects/SkillType/describe","sobject":"/services/data/v58.0/sobjects/SkillType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"552","label":"Entitlement + Process","labelPlural":"Entitlement Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SlaProcess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SlaProcess/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SlaProcess/{ID}","describe":"/services/data/v58.0/sobjects/SlaProcess/describe","layouts":"/services/data/v58.0/sobjects/SlaProcess/describe/layouts","sobject":"/services/data/v58.0/sobjects/SlaProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"501","label":"Solution","labelPlural":"Solutions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Solution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Solution/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Solution/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Solution/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Solution/describe","layouts":"/services/data/v58.0/sobjects/Solution/describe/layouts","sobject":"/services/data/v58.0/sobjects/Solution"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Feed","labelPlural":"Solution Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SolutionFeed/describe","sobject":"/services/data/v58.0/sobjects/SolutionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + History","labelPlural":"Solution History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SolutionHistory/describe","sobject":"/services/data/v58.0/sobjects/SolutionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Status Value","labelPlural":"Solution Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionStatus/{ID}","describe":"/services/data/v58.0/sobjects/SolutionStatus/describe","sobject":"/services/data/v58.0/sobjects/SolutionStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xv","label":"Source + Change Notification","labelPlural":"Source Change Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SourceChangeNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SourceChangeNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/SourceChangeNotification/eventSchema","describe":"/services/data/v58.0/sobjects/SourceChangeNotification/describe","sobject":"/services/data/v58.0/sobjects/SourceChangeNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ST","label":"Stamp","labelPlural":"Stamps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stamp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stamp/{ID}","describe":"/services/data/v58.0/sobjects/Stamp/describe","sobject":"/services/data/v58.0/sobjects/Stamp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SA","label":"Stamp + Assignment","labelPlural":"Stamp Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StampAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StampAssignment/{ID}","describe":"/services/data/v58.0/sobjects/StampAssignment/describe","sobject":"/services/data/v58.0/sobjects/StampAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"081","label":"Static + Resource","labelPlural":"Static Resources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"StaticResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StaticResource/{ID}","describe":"/services/data/v58.0/sobjects/StaticResource/describe","sobject":"/services/data/v58.0/sobjects/StaticResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0M6","label":"Streaming + Channel","labelPlural":"Streaming Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"StreamingChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/StreamingChannel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/StreamingChannel/describe","layouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/layouts","push":"/services/data/v58.0/sobjects/StreamingChannel/{ID}/push","sobject":"/services/data/v58.0/sobjects/StreamingChannel"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"StreamingChannel","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Streaming + Channel Share","labelPlural":"Streaming Channel Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StreamingChannelShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StreamingChannelShare/{ID}","describe":"/services/data/v58.0/sobjects/StreamingChannelShare/describe","sobject":"/services/data/v58.0/sobjects/StreamingChannelShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Stripe_Connection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Stripe_Connection","labelPlural":"Change Event: Stripe_Connection","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1V","label":"Stripe_Connection","labelPlural":"Stripe_Connection","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__c/{ID}","describe":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe","quickActions":"/services/data/v58.0/sobjects/Stripe_Connection__c/quickActions","layouts":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sW","label":"Swarm","labelPlural":"Swarms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Swarm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Swarm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Swarm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Swarm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Swarm/describe","quickActions":"/services/data/v58.0/sobjects/Swarm/quickActions","layouts":"/services/data/v58.0/sobjects/Swarm/describe/layouts","sobject":"/services/data/v58.0/sobjects/Swarm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Feed","labelPlural":"Swarm Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + History","labelPlural":"Swarm History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sR","label":"Swarm + Member","labelPlural":"Swarm Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SwarmMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SwarmMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SwarmMember/describe","quickActions":"/services/data/v58.0/sobjects/SwarmMember/quickActions","layouts":"/services/data/v58.0/sobjects/SwarmMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/SwarmMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Feed","labelPlural":"Swarm Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member History","labelPlural":"Swarm Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SwarmMember","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Share","labelPlural":"Swarm Member Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Swarm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Share","labelPlural":"Swarm Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sync_Record__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sync Record","labelPlural":"Change Event: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Sync_Record__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Sync Record","labelPlural":"Share: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__Share/{ID}","describe":"/services/data/v58.0/sobjects/Sync_Record__Share/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1W","label":"Sync + Record","labelPlural":"Sync Management","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sync_Record__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Sync_Record__c/describe","quickActions":"/services/data/v58.0/sobjects/Sync_Record__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sync_Record__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0KD","label":"Tab + Definition","labelPlural":"Tab Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TabDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TabDefinition/{ID}","describe":"/services/data/v58.0/sobjects/TabDefinition/describe","sobject":"/services/data/v58.0/sobjects/TabDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00T","label":"Task","labelPlural":"Tasks","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Task","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Task/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Task/{ID}","describe":"/services/data/v58.0/sobjects/Task/describe","quickActions":"/services/data/v58.0/sobjects/Task/quickActions","layouts":"/services/data/v58.0/sobjects/Task/describe/layouts","sobject":"/services/data/v58.0/sobjects/Task"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Change Event","labelPlural":"Task Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TaskChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TaskChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TaskChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Feed","labelPlural":"Task Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskFeed/{ID}","describe":"/services/data/v58.0/sobjects/TaskFeed/describe","sobject":"/services/data/v58.0/sobjects/TaskFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Priority Value","labelPlural":"Task Priority Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskPriority","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskPriority/{ID}","describe":"/services/data/v58.0/sobjects/TaskPriority/describe","sobject":"/services/data/v58.0/sobjects/TaskPriority"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Status Value","labelPlural":"Task Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskStatus/{ID}","describe":"/services/data/v58.0/sobjects/TaskStatus/describe","sobject":"/services/data/v58.0/sobjects/TaskStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UT","label":"Tenant + Usage Entitlement","labelPlural":"Tenant Usage Entitlements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"TenantUsageEntitlement","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TenantUsageEntitlement/{ID}","describe":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe","layouts":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/TenantUsageEntitlement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hd","label":"Test + Suite Membership","labelPlural":"Test Suite Memberships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TestSuiteMembership","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TestSuiteMembership/{ID}","describe":"/services/data/v58.0/sobjects/TestSuiteMembership/describe","sobject":"/services/data/v58.0/sobjects/TestSuiteMembership"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jr","label":"Third + Party Account Link","labelPlural":"Third Party Account Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThirdPartyAccountLink","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/{ID}","describe":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/describe","sobject":"/services/data/v58.0/sobjects/ThirdPartyAccountLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hY","label":"Threat + Detection Feedback","labelPlural":"Threat Detection Feedback","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ThreatDetectionFeedback","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe","quickActions":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/quickActions","layouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/layouts","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedback"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ThreatDetectionFeedback","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Threat + Detection Feedback Feed","labelPlural":"Threat Detection Feedback Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThreatDetectionFeedbackFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/describe","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ts","label":"Time + Sheet","labelPlural":"Time Sheets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheet/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheet/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheet/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheet"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Change Event","labelPlural":"Time Sheet Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1te","label":"Time + Sheet Entry","labelPlural":"Time Sheet Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheetEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheetEntry/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheetEntry/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheetEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Change Event","labelPlural":"Time Sheet Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Feed","labelPlural":"Time Sheet Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry History","labelPlural":"Time Sheet Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Feed","labelPlural":"Time Sheet Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet History","labelPlural":"Time Sheet History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TimeSheet","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Share","labelPlural":"Time Sheet Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetShare/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetShare/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gj","label":"Time + Slot","labelPlural":"Time Slots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/TimeSlot/describe","layouts":"/services/data/v58.0/sobjects/TimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSlot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Slot Change Event","labelPlural":"Time Slot Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSlotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSlotChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jz","label":"Goal","labelPlural":"Goals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoal","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoal/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoal/describe","sobject":"/services/data/v58.0/sobjects/TodayGoal"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TodayGoal","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Goal + Share","labelPlural":"Goal Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoalShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoalShare/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoalShare/describe","sobject":"/services/data/v58.0/sobjects/TodayGoalShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TO","label":"Topic","labelPlural":"Topics","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Topic","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Topic/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Topic/{ID}","describe":"/services/data/v58.0/sobjects/Topic/describe","layouts":"/services/data/v58.0/sobjects/Topic/describe/layouts","sobject":"/services/data/v58.0/sobjects/Topic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FT","label":"Topic + Assignment","labelPlural":"Topic Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicAssignment/{ID}","describe":"/services/data/v58.0/sobjects/TopicAssignment/describe","sobject":"/services/data/v58.0/sobjects/TopicAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Topic","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Topic + Feed","labelPlural":"Topic Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicFeed/{ID}","describe":"/services/data/v58.0/sobjects/TopicFeed/describe","sobject":"/services/data/v58.0/sobjects/TopicFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0te","label":"Topic + User Event","labelPlural":"Topic User Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicUserEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicUserEvent/{ID}","describe":"/services/data/v58.0/sobjects/TopicUserEvent/describe","sobject":"/services/data/v58.0/sobjects/TopicUserEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0NI","label":"Transaction + Security Policy","labelPlural":"Transaction Security Policies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TransactionSecurityPolicy","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/{ID}","describe":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/describe","sobject":"/services/data/v58.0/sobjects/TransactionSecurityPolicy"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01h","label":"Language + Translation","labelPlural":"Language Translation","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Translation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Translation/{ID}","describe":"/services/data/v58.0/sobjects/Translation/describe","sobject":"/services/data/v58.0/sobjects/Translation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5pL","label":"Travel + Mode","labelPlural":"Travel Modes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TravelMode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TravelMode/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TravelMode/describe","quickActions":"/services/data/v58.0/sobjects/TravelMode/quickActions","layouts":"/services/data/v58.0/sobjects/TravelMode/describe/layouts","sobject":"/services/data/v58.0/sobjects/TravelMode"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TravelMode","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Feed","labelPlural":"Travel Mode Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeFeed/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeFeed/describe","sobject":"/services/data/v58.0/sobjects/TravelModeFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TravelMode","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Share","labelPlural":"Travel Mode Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeShare/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeShare/describe","sobject":"/services/data/v58.0/sobjects/TravelModeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gp","label":"Ui + Formula Criterion","labelPlural":"Ui Formula Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaCriterion/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09t","label":"Ui + Formula Rule","labelPlural":"Ui Formula Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaRule/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaRule/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Undecided + Event Relation","labelPlural":"Undecided Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UndecidedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UndecidedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/UndecidedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/UndecidedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hE","label":"Unit + of Measure","labelPlural":"Units of Measure","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UnitOfMeasure","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasure/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UnitOfMeasure/describe","layouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/layouts","sobject":"/services/data/v58.0/sobjects/UnitOfMeasure"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UnitOfMeasure","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Unit + of Measure Share","labelPlural":"Unit of Measure Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UnitOfMeasureShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasureShare/{ID}","describe":"/services/data/v58.0/sobjects/UnitOfMeasureShare/describe","sobject":"/services/data/v58.0/sobjects/UnitOfMeasureShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uw","label":"URI + Event","labelPlural":"URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEvent/{ID}","describe":"/services/data/v58.0/sobjects/UriEvent/describe","sobject":"/services/data/v58.0/sobjects/UriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ux","label":"URI + Event Stream ","labelPlural":"URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/UriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/UriEventStream/describe","sobject":"/services/data/v58.0/sobjects/UriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"005","label":"User","labelPlural":"Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"User","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/User/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/User/{ID}","namedLayouts":"/services/data/v58.0/sobjects/User/describe/namedLayouts/{LayoutName}","passwordUtilities":"/services/data/v58.0/sobjects/User/{ID}/password","describe":"/services/data/v58.0/sobjects/User/describe","quickActions":"/services/data/v58.0/sobjects/User/quickActions","layouts":"/services/data/v58.0/sobjects/User/describe/layouts","sobject":"/services/data/v58.0/sobjects/User"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ds","label":"Last + Used App","labelPlural":"Last Used App","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppInfo/{ID}","describe":"/services/data/v58.0/sobjects/UserAppInfo/describe","sobject":"/services/data/v58.0/sobjects/UserAppInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nw","label":"UserAppMenuCustomization","labelPlural":"UserAppMenuCustomizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomization/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomization/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomization"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserAppMenuCustomization","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"UserAppMenuCustomization + Share","labelPlural":"UserAppMenuCustomization Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomizationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07p","label":"Application","labelPlural":"Applications","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UserAppMenuItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuItem/describe","layouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserAppMenuItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Change Event","labelPlural":"User Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/UserChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/UserChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/UserChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UV","label":"User + Email Preferred Person","labelPlural":"User Email Preferred People","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPerson","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPerson"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserEmailPreferredPerson","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Email Preferred Person Share","labelPlural":"User Email Preferred Person Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPersonShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07u","label":"User + Entity Access","labelPlural":"User Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserEntityAccess"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Feed","labelPlural":"User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFeed/{ID}","describe":"/services/data/v58.0/sobjects/UserFeed/describe","sobject":"/services/data/v58.0/sobjects/UserFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fp","label":"User + Field Access","labelPlural":"User Field Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFieldAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFieldAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserFieldAccess/describe","sobject":"/services/data/v58.0/sobjects/UserFieldAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"100","label":"User + License","labelPlural":"User Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserLicense/describe","sobject":"/services/data/v58.0/sobjects/UserLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Na","label":"User + List View","labelPlural":"User List View","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListView/{ID}","describe":"/services/data/v58.0/sobjects/UserListView/describe","sobject":"/services/data/v58.0/sobjects/UserListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JU","label":"User + List View Criteria","labelPlural":"User List View Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListViewCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListViewCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UserListViewCriterion/describe","sobject":"/services/data/v58.0/sobjects/UserListViewCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yw","label":"User + Login","labelPlural":"User Login","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLogin/{ID}","describe":"/services/data/v58.0/sobjects/UserLogin/describe","sobject":"/services/data/v58.0/sobjects/UserLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"051","label":"User + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User + Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User + Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User + Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User + Provisioning Account Staging","labelPlural":"User Provisioning Account Stagings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccountStaging","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccountStaging/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccountStaging/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccountStaging"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HX","label":"User + Provisioning Mock Target","labelPlural":"User Provisioning Mock Targets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvMockTarget","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvMockTarget/{ID}","describe":"/services/data/v58.0/sobjects/UserProvMockTarget/describe","sobject":"/services/data/v58.0/sobjects/UserProvMockTarget"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Je","label":"User + Provisioning Config","labelPlural":"User Provisioning Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningConfig/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningConfig/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hs","label":"User + Provisioning Log","labelPlural":"User Provisioning Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningLog/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningLog/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HP","label":"User + Provisioning Request","labelPlural":"User Provisioning Requests","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe","layouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserProvisioningRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Provisioning Request Share","labelPlural":"User Provisioning Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Record Access","labelPlural":"User Record Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserRecordAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserRecordAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserRecordAccess/describe","sobject":"/services/data/v58.0/sobjects/UserRecordAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00E","label":"Role","labelPlural":"Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserRole/{ID}","describe":"/services/data/v58.0/sobjects/UserRole/describe","layouts":"/services/data/v58.0/sobjects/UserRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g2","label":"User + Setup Entity Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserSetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserSetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserSetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserSetupEntityAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"User","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0N2","label":"User + Share","labelPlural":"User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserShare/{ID}","describe":"/services/data/v58.0/sobjects/UserShare/describe","sobject":"/services/data/v58.0/sobjects/UserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qt","label":"Identity + Verification History","labelPlural":"Identity Verification History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VerificationHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VerificationHistory/{ID}","describe":"/services/data/v58.0/sobjects/VerificationHistory/describe","sobject":"/services/data/v58.0/sobjects/VerificationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OP","label":"Visualforce + Access Metric","labelPlural":"Visualforce Access Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VisualforceAccessMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/{ID}","describe":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/describe","sobject":"/services/data/v58.0/sobjects/VisualforceAccessMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"083","label":"Vote","labelPlural":"Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Vote","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Vote/{ID}","describe":"/services/data/v58.0/sobjects/Vote/describe","sobject":"/services/data/v58.0/sobjects/Vote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4V3","label":"Warranty + Term","labelPlural":"Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WarrantyTerm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/WarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/WarrantyTerm"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Change Event","labelPlural":"Warranty Term Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Feed","labelPlural":"Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term History","labelPlural":"Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WarrantyTerm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Share","labelPlural":"Warranty Term Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermShare/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermShare/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00b","label":"Custom + Button or Link","labelPlural":"Custom Buttons or Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WebLink","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WebLink/{ID}","describe":"/services/data/v58.0/sobjects/WebLink/describe","sobject":"/services/data/v58.0/sobjects/WebLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W5","label":"Access","labelPlural":"Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccess/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccess/describe","sobject":"/services/data/v58.0/sobjects/WorkAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkAccess","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Access + Share","labelPlural":"Access Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccessShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccessShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccessShare/describe","sobject":"/services/data/v58.0/sobjects/WorkAccessShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W2","label":"Badge + Received","labelPlural":"Badges Received","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadge","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadge/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadge/describe","layouts":"/services/data/v58.0/sobjects/WorkBadge/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadge"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W1","label":"Badge","labelPlural":"Badges","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadgeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/WorkBadgeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Feed","labelPlural":"Badge Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + History","labelPlural":"Badge History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkBadgeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work + Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order History","labelPlural":"Work Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1WL","label":"Work + Order Line Item","labelPlural":"Work Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/approvalLayouts","workOrderLineItemRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}/suggestedArticles","describe":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/layouts","workOrderLineItemArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/suggestedArticles","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Change Event","labelPlural":"Work Order Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Feed","labelPlural":"Work Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item History","labelPlural":"Work Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Status Value","labelPlural":"Work Order Line Item Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Share","labelPlural":"Work Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderShare/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Status Value","labelPlural":"Work Order Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gq","label":"Work + Plan","labelPlural":"Work Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlan/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlan/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Change Event","labelPlural":"Work Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Feed","labelPlural":"Work Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan History","labelPlural":"Work Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gr","label":"Work + Plan Selection Rule","labelPlural":"Work Plan Selection Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanSelectionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Change Event","labelPlural":"Work Plan Selection Rule + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Feed","labelPlural":"Work Plan Selection Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule History","labelPlural":"Work Plan Selection Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanSelectionRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Share","labelPlural":"Work Plan Selection Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Share","labelPlural":"Work Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7Iy","label":"Work + Plan Template","labelPlural":"Work Plan Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Change Event","labelPlural":"Work Plan Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8xu","label":"Work + Plan Template Entry","labelPlural":"Work Plan Template Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplateEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Change Event","labelPlural":"Work Plan Template Entry + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Feed","labelPlural":"Work Plan Template Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry History","labelPlural":"Work Plan Template Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Feed","labelPlural":"Work Plan Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template History","labelPlural":"Work Plan Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Share","labelPlural":"Work Plan Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hF","label":"Work + Step","labelPlural":"Work Steps","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStep/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStep/describe","quickActions":"/services/data/v58.0/sobjects/WorkStep/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStep/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStep"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Change Event","labelPlural":"Work Step Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Feed","labelPlural":"Work Step Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step History","labelPlural":"Work Step History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Status Value","labelPlural":"Work Step Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkStepStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4L0","label":"Work + Step Template","labelPlural":"Work Step Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStepTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStepTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkStepTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStepTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Change Event","labelPlural":"Work Step Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Feed","labelPlural":"Work Step Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template History","labelPlural":"Work Step Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkStepTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Share","labelPlural":"Work Step Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W0","label":"Thanks","labelPlural":"Thanks","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"WorkThanks","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanks/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanks/describe","layouts":"/services/data/v58.0/sobjects/WorkThanks/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkThanks"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkThanks","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Thanks + Share","labelPlural":"Thanks Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkThanksShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanksShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanksShare/describe","sobject":"/services/data/v58.0/sobjects/WorkThanksShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08q","label":"Work + Type","labelPlural":"Work Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkType/describe","quickActions":"/services/data/v58.0/sobjects/WorkType/quickActions","layouts":"/services/data/v58.0/sobjects/WorkType/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkType"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Change Event","labelPlural":"Work Type Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Feed","labelPlural":"Work Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VS","label":"Work + Type Group","labelPlural":"Work Type Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroup/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroup/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Feed","labelPlural":"Work Type Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group History","labelPlural":"Work Type Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Wz","label":"Work + Type Group Member","labelPlural":"Work Type Group Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroupMember/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member Feed","labelPlural":"Work Type Group Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member History","labelPlural":"Work Type Group Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkTypeGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R8N000000vglBUAQ + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"pfppvX9X"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:13:01 GMT + Set-Cookie: + - BrowserId=pHgvhWxPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:01 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=473/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:01 GMT + Set-Cookie: + - BrowserId=pJTfR2xPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:01 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=474/5000000 + Etag: + - '"1100e741--gzip"' + Last-Modified: + - Wed, 11 Oct 2023 19:10:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"encoding":"UTF-8","maxBatchSize":200,"sobjects":[{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pp","label":"AI + Application","labelPlural":"AI Applications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplication/{ID}","describe":"/services/data/v58.0/sobjects/AIApplication/describe","sobject":"/services/data/v58.0/sobjects/AIApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6S9","label":"AI + Application config","labelPlural":"AI Application configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplicationConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplicationConfig/{ID}","describe":"/services/data/v58.0/sobjects/AIApplicationConfig/describe","sobject":"/services/data/v58.0/sobjects/AIApplicationConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qd","label":"AI + Insight Action","labelPlural":"AI Insight Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightAction/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightAction/describe","sobject":"/services/data/v58.0/sobjects/AIInsightAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9bq","label":"AI + Insight Feedback","labelPlural":"AI Insight Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightFeedback/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightFeedback/describe","sobject":"/services/data/v58.0/sobjects/AIInsightFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T2","label":"AI + Insight Reason","labelPlural":"AI Insight Reasons","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightReason","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightReason/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightReason/describe","sobject":"/services/data/v58.0/sobjects/AIInsightReason"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qc","label":"AI + Insight Value","labelPlural":"AI Insight Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightValue/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightValue/describe","sobject":"/services/data/v58.0/sobjects/AIInsightValue"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ae","label":"AI + Prediction Event","labelPlural":"AI Prediction Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIPredictionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIPredictionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AIPredictionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AIPredictionEvent/describe","sobject":"/services/data/v58.0/sobjects/AIPredictionEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qb","label":"AI + Record Insight","labelPlural":"AI Record Insights","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIRecordInsight","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIRecordInsight/{ID}","describe":"/services/data/v58.0/sobjects/AIRecordInsight/describe","sobject":"/services/data/v58.0/sobjects/AIRecordInsight"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Accepted + Event Relation","labelPlural":"Accepted Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AcceptedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AcceptedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/AcceptedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/AcceptedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"001","label":"Account","labelPlural":"Accounts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Account","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Account/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Account/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Account/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Account/listviews","describe":"/services/data/v58.0/sobjects/Account/describe","quickActions":"/services/data/v58.0/sobjects/Account/quickActions","layouts":"/services/data/v58.0/sobjects/Account/describe/layouts","sobject":"/services/data/v58.0/sobjects/Account"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Change Event","labelPlural":"Account Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CA","label":"Account + Clean Info","labelPlural":"Account Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/AccountCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/AccountCleanInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02Z","label":"Account + Contact Role","labelPlural":"Account Contact Roles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRole/{ID}","describe":"/services/data/v58.0/sobjects/AccountContactRole/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AccountContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Contact Role Change Event","labelPlural":"Account Contact Role Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Feed","labelPlural":"Account Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountFeed/{ID}","describe":"/services/data/v58.0/sobjects/AccountFeed/describe","sobject":"/services/data/v58.0/sobjects/AccountFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + History","labelPlural":"Account History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountHistory/{ID}","describe":"/services/data/v58.0/sobjects/AccountHistory/describe","sobject":"/services/data/v58.0/sobjects/AccountHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Account + Partner","labelPlural":"Account Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AccountPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AccountPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AccountPartner/{ID}","describe":"/services/data/v58.0/sobjects/AccountPartner/describe","layouts":"/services/data/v58.0/sobjects/AccountPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/AccountPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Account","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00r","label":"Account + Share","labelPlural":"Account Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountShare/{ID}","describe":"/services/data/v58.0/sobjects/AccountShare/describe","sobject":"/services/data/v58.0/sobjects/AccountShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07g","label":"Action + Link Group Template","labelPlural":"Action Link Group Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ActionLinkGroupTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07l","label":"Action + Link Template","labelPlural":"Action Link Templates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ActionLinkTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActionLinkTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H2","label":"Active + Feature License Metric","labelPlural":"Active Feature License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveFeatureLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H1","label":"Active + Permission Set License Metric","labelPlural":"Active Permission Set License + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivePermSetLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H0","label":"Active + Profile Metric","labelPlural":"Active Profile Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveProfileMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveProfileMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveProfileMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveProfileMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2fp","label":"Activity + Field History","labelPlural":"Activity Field Histories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityFieldHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Activity + History","labelPlural":"Activity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04m","label":"Additional + Directory Number","labelPlural":"Additional Directory Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AdditionalNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AdditionalNumber/{ID}","describe":"/services/data/v58.0/sobjects/AdditionalNumber/describe","sobject":"/services/data/v58.0/sobjects/AdditionalNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"130","label":"Address","labelPlural":"Addresses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Address","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Address/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Address/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Address/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Address/describe","layouts":"/services/data/v58.0/sobjects/Address/describe/layouts","sobject":"/services/data/v58.0/sobjects/Address"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Aggregate + Result","labelPlural":"Aggregate Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AggregateResult","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AggregateResult/{ID}","describe":"/services/data/v58.0/sobjects/AggregateResult/describe","sobject":"/services/data/v58.0/sobjects/AggregateResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Z7","label":"Alternative + Payment Method","labelPlural":"Alternative Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AlternativePaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/AlternativePaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethod"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AlternativePaymentMethod","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Alternative + Payment Method Share","labelPlural":"Alternative Payment Method Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AlternativePaymentMethodShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/describe","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bt","label":"Announcement","labelPlural":"Announcements","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Announcement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Announcement/{ID}","describe":"/services/data/v58.0/sobjects/Announcement/describe","sobject":"/services/data/v58.0/sobjects/Announcement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01p","label":"Apex + Class","labelPlural":"Apex Classes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApexClass","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApexClass/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApexClass/{ID}","describe":"/services/data/v58.0/sobjects/ApexClass/describe","layouts":"/services/data/v58.0/sobjects/ApexClass/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApexClass"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"099","label":"Visualforce + Component","labelPlural":"Visualforce Components","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexComponent/{ID}","describe":"/services/data/v58.0/sobjects/ApexComponent/describe","sobject":"/services/data/v58.0/sobjects/ApexComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06j","label":"Apex + Email Notification","labelPlural":"Apex Email Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexEmailNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexEmailNotification/{ID}","describe":"/services/data/v58.0/sobjects/ApexEmailNotification/describe","sobject":"/services/data/v58.0/sobjects/ApexEmailNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07L","label":"Apex + Debug Log","labelPlural":"Apex Debug Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexLog/{ID}","describe":"/services/data/v58.0/sobjects/ApexLog/describe","sobject":"/services/data/v58.0/sobjects/ApexLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"066","label":"Visualforce + Page","labelPlural":"Visualforce Pages","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexPage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPage/{ID}","describe":"/services/data/v58.0/sobjects/ApexPage/describe","sobject":"/services/data/v58.0/sobjects/ApexPage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ve","label":"Apex + Page Info","labelPlural":"Apex Pages Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexPageInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPageInfo/{ID}","describe":"/services/data/v58.0/sobjects/ApexPageInfo/describe","sobject":"/services/data/v58.0/sobjects/ApexPageInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"709","label":"Apex + Test Queue Item","labelPlural":"Apex Test Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestQueueItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestQueueItem/describe","sobject":"/services/data/v58.0/sobjects/ApexTestQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07M","label":"Apex + Test Result","labelPlural":"Apex Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05n","label":"Apex + Test Result Limit","labelPlural":"Apex Test Result Limit","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResultLimits","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResultLimits/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResultLimits/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResultLimits"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05m","label":"Apex + Test Run Result","labelPlural":"Apex Test Run Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestRunResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestRunResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestRunResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestRunResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05F","label":"Apex + Test Suite","labelPlural":"Apex Test Suites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestSuite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestSuite/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestSuite/describe","sobject":"/services/data/v58.0/sobjects/ApexTestSuite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01q","label":"Apex + Trigger","labelPlural":"Apex Triggers","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexTrigger","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTrigger/{ID}","describe":"/services/data/v58.0/sobjects/ApexTrigger/describe","sobject":"/services/data/v58.0/sobjects/ApexTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0kt","label":"Apex + Type Implementor","labelPlural":"Apex Type Implementors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTypeImplementor","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTypeImplementor/{ID}","describe":"/services/data/v58.0/sobjects/ApexTypeImplementor/describe","sobject":"/services/data/v58.0/sobjects/ApexTypeImplementor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j5","label":"API + Anomaly Event","labelPlural":"API Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ApiAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j6","label":"API + Anomaly Event Store","labelPlural":"API Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApiAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApiAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"API + Anomaly Event Store Feed","labelPlural":"API Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07t","label":"API + Event","labelPlural":"API Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEvent/{ID}","describe":"/services/data/v58.0/sobjects/ApiEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QI","label":"API + Event Stream","labelPlural":"API Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ApiEventStream/describe","sobject":"/services/data/v58.0/sobjects/ApiEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XI","label":"App + Analytics Query Request","labelPlural":"App Analytics Query Requests","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"AppAnalyticsQueryRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/{ID}","describe":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/describe","sobject":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06m","label":"App + Definition","labelPlural":"App Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AppDefinition/describe","sobject":"/services/data/v58.0/sobjects/AppDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mg","label":"App + Extension","labelPlural":"App Extensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppExtension/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppExtension/{ID}","describe":"/services/data/v58.0/sobjects/AppExtension/describe","layouts":"/services/data/v58.0/sobjects/AppExtension/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppExtension"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AppExtension","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"App + Extension Change Event","labelPlural":"App Extension Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppExtensionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AppExtensionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DS","label":"AppMenuItem","labelPlural":"AppMenuItems","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/AppMenuItem/describe","sobject":"/services/data/v58.0/sobjects/AppMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06o","label":"App + Tab Member","labelPlural":"App Tab Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppTabMember","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppTabMember/{ID}","describe":"/services/data/v58.0/sobjects/AppTabMember/describe","sobject":"/services/data/v58.0/sobjects/AppTabMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j8","label":"Application + Usage Assignment","labelPlural":"Application Usage Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppUsageAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppUsageAssignment/{ID}","describe":"/services/data/v58.0/sobjects/AppUsageAssignment/describe","layouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppUsageAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0mS","label":"Appointment + Topic Time Slot","labelPlural":"Appointment Topic Time Slots","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe","quickActions":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/quickActions","layouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Topic Time Slot History","labelPlural":"Appointment Topic Time Slot History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"52D","label":"Appointment + Bundle Aggregation Duration Downscale","labelPlural":"Appointment Bundle Aggregation + Duration Downscales","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrDurDnscale","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrDurDnscale","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Duration Downscale Feed","labelPlural":"Appointment Bundle + Aggregation Duration Downscale Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrDurDnscaleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7yi","label":"Appointment + Bundle Aggregation Policy","labelPlural":"Appointment Bundle Aggregation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Policy Feed","labelPlural":"Appointment Bundle Aggregation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Cv","label":"Appointment + Bundle Config","labelPlural":"Appointment Bundle Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleConfig","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfig/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleConfig/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleConfig/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleConfig"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Feed","labelPlural":"Appointment Bundle Config Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config History","labelPlural":"Appointment Bundle Config History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundleConfig","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Share","labelPlural":"Appointment Bundle Config Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sT","label":"Appointment + Bundle Policy","labelPlural":"Appointment Bundle Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Feed","labelPlural":"Appointment Bundle Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundlePolicy","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Share","labelPlural":"Appointment Bundle Policy Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7b0","label":"Appointment + Bundle Policy Service Territory","labelPlural":"Appointment Bundle Policy + Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicySvcTerr","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicySvcTerr","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Service Territory Feed","labelPlural":"Appointment Bundle Policy + Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicySvcTerrFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8XA","label":"Appointment + Bundle Propagation Policy","labelPlural":"Appointment Bundle Propagation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePropagatePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePropagatePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Propagation Policy Feed","labelPlural":"Appointment Bundle Propagation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePropagatePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6KP","label":"Appointment + Bundle Restriction Policy","labelPlural":"Appointment Bundle Restriction Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleRestrictPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleRestrictPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Restriction Policy Feed","labelPlural":"Appointment Bundle Restriction + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleRestrictPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lU","label":"Appointment + Bundle Sort Policy","labelPlural":"Appointment Bundle Sort Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleSortPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleSortPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Sort Policy Feed","labelPlural":"Appointment Bundle Sort Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleSortPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02i","label":"Asset","labelPlural":"Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Asset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Asset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Asset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Asset/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Asset/listviews","describe":"/services/data/v58.0/sobjects/Asset/describe","quickActions":"/services/data/v58.0/sobjects/Asset/quickActions","layouts":"/services/data/v58.0/sobjects/Asset/describe/layouts","sobject":"/services/data/v58.0/sobjects/Asset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nL","label":"Asset + Action","labelPlural":"Asset Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetAction/describe","layouts":"/services/data/v58.0/sobjects/AssetAction/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nM","label":"Asset + Action Source","labelPlural":"Asset Action Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetActionSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetActionSource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetActionSource/describe","layouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetActionSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0oV","label":"Asset + Attribute","labelPlural":"Asset Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetAttribute","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAttribute/{ID}","describe":"/services/data/v58.0/sobjects/AssetAttribute/describe","layouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAttribute"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetAttribute","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Attribute Change Event","labelPlural":"Asset Attribute Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetAttributeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Change Event","labelPlural":"Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gP","label":"Asset + Downtime Period","labelPlural":"Asset Downtime Periods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetDowntimePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriod/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe","quickActions":"/services/data/v58.0/sobjects/AssetDowntimePeriod/quickActions","layouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriod"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period Feed","labelPlural":"Asset Downtime Period Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period History","labelPlural":"Asset Downtime Period History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Feed","labelPlural":"Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + History","labelPlural":"Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1AR","label":"Asset + Relationship","labelPlural":"Asset Relationships","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetRelationship","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetRelationship/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetRelationship/describe","quickActions":"/services/data/v58.0/sobjects/AssetRelationship/quickActions","layouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetRelationship"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship Feed","labelPlural":"Asset Relationship Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship History","labelPlural":"Asset Relationship History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Asset","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"70a","label":"Asset + Share","labelPlural":"Asset Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetShare/{ID}","describe":"/services/data/v58.0/sobjects/AssetShare/describe","sobject":"/services/data/v58.0/sobjects/AssetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nK","label":"Asset + State Period","labelPlural":"Asset State Periods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetStatePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetStatePeriod/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetStatePeriod/describe","layouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetStatePeriod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Li","label":"Asset + Token Event","labelPlural":"Asset Token Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetTokenEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetTokenEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetTokenEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetTokenEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetTokenEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4xo","label":"Asset + Warranty","labelPlural":"Asset Warranties","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetWarranty","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetWarranty/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetWarranty/describe","quickActions":"/services/data/v58.0/sobjects/AssetWarranty/quickActions","layouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetWarranty"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Change Event","labelPlural":"Asset Warranty Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Feed","labelPlural":"Asset Warranty Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty History","labelPlural":"Asset Warranty History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03r","label":"Assigned + Resource","labelPlural":"Assigned Resources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssignedResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssignedResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssignedResource/describe","quickActions":"/services/data/v58.0/sobjects/AssignedResource/quickActions","layouts":"/services/data/v58.0/sobjects/AssignedResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssignedResource"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Change Event","labelPlural":"Assigned Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Feed","labelPlural":"Assigned Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssignedResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Q","label":"Assignment + Rule","labelPlural":"Assignment Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignmentRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignmentRule/{ID}","describe":"/services/data/v58.0/sobjects/AssignmentRule/describe","sobject":"/services/data/v58.0/sobjects/AssignmentRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kt","label":"Associated + Location","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated + Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex + Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async + Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async + Operation Log","labelPlural":"Async Operation Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AsyncOperationLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationLog/{ID}","describe":"/services/data/v58.0/sobjects/AsyncOperationLog/describe","layouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/AsyncOperationLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0YD","label":"Async + Operation Status","labelPlural":"Async Operation Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationStatus/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationStatus/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationStatus/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attached + Content Document","labelPlural":"Attached Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttachedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttachedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/AttachedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/AttachedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00P","label":"Attachment","labelPlural":"Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Attachment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Attachment/{ID}","describe":"/services/data/v58.0/sobjects/Attachment/describe","sobject":"/services/data/v58.0/sobjects/Attachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0tj","label":"Attribute + Definition","labelPlural":"Attribute Definitions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/AttributeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Feed","labelPlural":"Attribute Definition Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition History","labelPlural":"Attribute Definition History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Share","labelPlural":"Attribute Definition Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v5","label":"Attribute + Picklist","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute + Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning + Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura + Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle + Info","labelPlural":"AuraDefinitionBundle Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundleInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ad","label":"AuraDefinition + Info","labelPlural":"AuraDefinition Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07T","label":"Authentication + Configuration","labelPlural":"Authentication Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfig/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfig/describe","sobject":"/services/data/v58.0/sobjects/AuthConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07U","label":"Authentication + Configuration Auth. Provider","labelPlural":"Authentication Configuration + Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfigProviders","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfigProviders/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfigProviders/describe","sobject":"/services/data/v58.0/sobjects/AuthConfigProviders"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SO","label":"Auth. + Provider","labelPlural":"Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthProvider/{ID}","describe":"/services/data/v58.0/sobjects/AuthProvider/describe","sobject":"/services/data/v58.0/sobjects/AuthProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ak","label":"Auth + Session","labelPlural":"Auth Sessions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthSession","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthSession/{ID}","describe":"/services/data/v58.0/sobjects/AuthSession/describe","sobject":"/services/data/v58.0/sobjects/AuthSession"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cI","label":"Authorization + Form","labelPlural":"Authorization Forms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationForm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationForm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationForm/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationForm/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationForm"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cK","label":"Authorization + Form Consent","labelPlural":"Authorization Form Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormConsent/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Change Event","labelPlural":"Authorization Form Consent Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent History","labelPlural":"Authorization Form Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Share","labelPlural":"Authorization Form Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cM","label":"Authorization + Form Data Use","labelPlural":"Authorization Form Data Uses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormDataUse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUse"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormDataUse","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use History","labelPlural":"Authorization Form Data Use History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormDataUse","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use Share","labelPlural":"Authorization Form Data Use Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationForm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form History","labelPlural":"Authorization Form History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationForm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Share","labelPlural":"Authorization Form Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cN","label":"Authorization + Form Text","labelPlural":"Authorization Form Texts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormText/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormText/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormText/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormText"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text Feed","labelPlural":"Authorization Form Text Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text History","labelPlural":"Authorization Form Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08P","label":"Background + Operation","labelPlural":"Background Operations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"BackgroundOperation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BackgroundOperation/{ID}","describe":"/services/data/v58.0/sobjects/BackgroundOperation/describe","layouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/layouts","sobject":"/services/data/v58.0/sobjects/BackgroundOperation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QQ","label":"Batch + Apex Error Platform Event","labelPlural":"Batch Apex Error Platform Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BatchApexErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BatchApexErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BatchApexErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BatchApexErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/BatchApexErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"016","label":"Letterhead","labelPlural":"Letterheads","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandTemplate/{ID}","describe":"/services/data/v58.0/sobjects/BrandTemplate/describe","sobject":"/services/data/v58.0/sobjects/BrandTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lw","label":"Branding + Set","labelPlural":"Branding Sets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSet/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSet/describe","sobject":"/services/data/v58.0/sobjects/BrandingSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ly","label":"Branding + Set Property","labelPlural":"Branding Set Properties","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSetProperty","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSetProperty/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSetProperty/describe","sobject":"/services/data/v58.0/sobjects/BrandingSetProperty"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5LH","label":"Briefcase + Assignment","labelPlural":"Briefcase Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignment/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseAssignment/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseAssignment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Assignment Change Event","labelPlural":"Briefcase Assignment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rY","label":"Briefcase + Definition","labelPlural":"Briefcase Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinition/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseDefinition/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinition"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Definition Change Event","labelPlural":"Briefcase Definition Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinitionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rX","label":"Briefcase + Rule","labelPlural":"Briefcase Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRule/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRule/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rZ","label":"Briefcase + Rule Filter","labelPlural":"Briefcase Rule Filters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRuleFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRuleFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hx","label":"Bulk + API Result Event","labelPlural":"Bulk API Result Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BulkApiResultEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BulkApiResultEvent/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hJ","label":"Bulk + API Result Event Store","labelPlural":"Bulk API Result Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEventStore/{ID}","describe":"/services/data/v58.0/sobjects/BulkApiResultEventStore/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1BU","label":"Business + Brand","labelPlural":"Business Brands","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessBrand","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessBrand/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/BusinessBrand/describe","layouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessBrand"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"BusinessBrand","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Business + Brand Share","labelPlural":"Business Brand Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessBrandShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessBrandShare/{ID}","describe":"/services/data/v58.0/sobjects/BusinessBrandShare/describe","sobject":"/services/data/v58.0/sobjects/BusinessBrandShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01m","label":"Business + Hours","labelPlural":"Business Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessHours/{ID}","describe":"/services/data/v58.0/sobjects/BusinessHours/describe","layouts":"/services/data/v58.0/sobjects/BusinessHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessHours"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"019","label":"Business + Process","labelPlural":"Business Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessProcess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessProcess/{ID}","describe":"/services/data/v58.0/sobjects/BusinessProcess/describe","sobject":"/services/data/v58.0/sobjects/BusinessProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"023","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Calendar","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Calendar/{ID}","describe":"/services/data/v58.0/sobjects/Calendar/describe","sobject":"/services/data/v58.0/sobjects/Calendar"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03A","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarView","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarView/{ID}","describe":"/services/data/v58.0/sobjects/CalendarView/describe","sobject":"/services/data/v58.0/sobjects/CalendarView"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CalendarView","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Calendar + Share","labelPlural":"Calendar Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarViewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarViewShare/{ID}","describe":"/services/data/v58.0/sobjects/CalendarViewShare/describe","sobject":"/services/data/v58.0/sobjects/CalendarViewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04v","label":"Call + Center","labelPlural":"Call Centers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCenter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCenter/{ID}","describe":"/services/data/v58.0/sobjects/CallCenter/describe","sobject":"/services/data/v58.0/sobjects/CallCenter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hn","label":"CallCoachingMediaProvider","labelPlural":"CallCoachingMediaProviders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCoachingMediaProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/{ID}","describe":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/describe","sobject":"/services/data/v58.0/sobjects/CallCoachingMediaProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"701","label":"Campaign","labelPlural":"Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Campaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Campaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Campaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Campaign/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Campaign/listviews","describe":"/services/data/v58.0/sobjects/Campaign/describe","quickActions":"/services/data/v58.0/sobjects/Campaign/quickActions","layouts":"/services/data/v58.0/sobjects/Campaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/Campaign"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Change Event","labelPlural":"Campaign Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Feed","labelPlural":"Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/CampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/CampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Field History","labelPlural":"Campaign Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/CampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/CampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03V","label":"Campaign + Influence Model","labelPlural":"Campaign Influence Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignInfluenceModel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignInfluenceModel/{ID}","describe":"/services/data/v58.0/sobjects/CampaignInfluenceModel/describe","sobject":"/services/data/v58.0/sobjects/CampaignInfluenceModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00v","label":"Campaign + Member","labelPlural":"Campaign Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMember/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMember/describe","layouts":"/services/data/v58.0/sobjects/CampaignMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Change Event","labelPlural":"Campaign Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Y","label":"Campaign + Member Status","labelPlural":"Campaign Member Statuses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatus","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatus/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe","layouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMemberStatus","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Status Change Event","labelPlural":"Campaign Member Status Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatusChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Campaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08s","label":"Campaign + Share","labelPlural":"Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/CampaignShare/describe","sobject":"/services/data/v58.0/sobjects/CampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03O","label":"Card + Payment Method","labelPlural":"Card Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CardPaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CardPaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/CardPaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/CardPaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/CardPaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"500","label":"Case","labelPlural":"Cases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Case","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Case/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Case/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Case/describe/approvalLayouts","caseArticleSuggestions":"/services/data/v58.0/sobjects/Case/suggestedArticles","caseRowArticleSuggestions":"/services/data/v58.0/sobjects/Case/{ID}/suggestedArticles","listviews":"/services/data/v58.0/sobjects/Case/listviews","describe":"/services/data/v58.0/sobjects/Case/describe","quickActions":"/services/data/v58.0/sobjects/Case/quickActions","layouts":"/services/data/v58.0/sobjects/Case/describe/layouts","sobject":"/services/data/v58.0/sobjects/Case"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Change Event","labelPlural":"Case Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CaseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CaseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CaseChangeEvent"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Case + Comment","labelPlural":"Case Comments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseComment/{ID}","describe":"/services/data/v58.0/sobjects/CaseComment/describe","layouts":"/services/data/v58.0/sobjects/CaseComment/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03j","label":"Case + Contact Role","labelPlural":"Case Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseContactRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseContactRole/describe","layouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Feed","labelPlural":"Case Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseFeed/{ID}","describe":"/services/data/v58.0/sobjects/CaseFeed/describe","sobject":"/services/data/v58.0/sobjects/CaseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + History","labelPlural":"Case History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseHistory/{ID}","describe":"/services/data/v58.0/sobjects/CaseHistory/describe","sobject":"/services/data/v58.0/sobjects/CaseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"555","label":"Case + Milestone","labelPlural":"Case Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseMilestone","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseMilestone/{ID}","describe":"/services/data/v58.0/sobjects/CaseMilestone/describe","layouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseMilestone"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01n","label":"Case + Share","labelPlural":"Case Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseShare/{ID}","describe":"/services/data/v58.0/sobjects/CaseShare/describe","sobject":"/services/data/v58.0/sobjects/CaseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"010","label":"Case + Solution","labelPlural":"Case Solution","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseSolution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseSolution/{ID}","describe":"/services/data/v58.0/sobjects/CaseSolution/describe","sobject":"/services/data/v58.0/sobjects/CaseSolution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Status Value","labelPlural":"Case Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseStatus/{ID}","describe":"/services/data/v58.0/sobjects/CaseStatus/describe","sobject":"/services/data/v58.0/sobjects/CaseStatus"}},{"activateable":false,"associateEntityType":"TeamMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member","labelPlural":"Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamMember"}},{"activateable":false,"associateEntityType":"TeamRole","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member Role","labelPlural":"Case Team Member Role","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamRole/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamRole"}},{"activateable":false,"associateEntityType":"TeamTemplate","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team","labelPlural":"Predefined Case Team","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplate/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplate/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplate"}},{"activateable":false,"associateEntityType":"TeamTemplateMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Member","labelPlural":"Predefined Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateMember"}},{"activateable":false,"associateEntityType":"TeamTemplateRecord","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Record","labelPlural":"Predefined Case Team Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02o","label":"Category + Data","labelPlural":"Category Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryData/{ID}","describe":"/services/data/v58.0/sobjects/CategoryData/describe","sobject":"/services/data/v58.0/sobjects/CategoryData"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02n","label":"Category + Node","labelPlural":"Category Nodes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryNode/{ID}","describe":"/services/data/v58.0/sobjects/CategoryNode/describe","sobject":"/services/data/v58.0/sobjects/CategoryNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ca","label":"Chatter + Activity","labelPlural":"Chatter Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterActivity/{ID}","describe":"/services/data/v58.0/sobjects/ChatterActivity/describe","sobject":"/services/data/v58.0/sobjects/ChatterActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MY","label":"Extension","labelPlural":"Extensions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtension/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtension/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtension"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ob","label":"Chatter + Extension Configuration","labelPlural":"Chatter Extension Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtensionConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtensionConfig/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtensionConfig/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtensionConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"713","label":"Client + Browser","labelPlural":"Client Browser","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ClientBrowser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ClientBrowser/{ID}","describe":"/services/data/v58.0/sobjects/ClientBrowser/describe","sobject":"/services/data/v58.0/sobjects/ClientBrowser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0F9","label":"Group","labelPlural":"Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroup/{ID}","listviews":"/services/data/v58.0/sobjects/CollaborationGroup/listviews","describe":"/services/data/v58.0/sobjects/CollaborationGroup/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CollaborationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Group + Feed","labelPlural":"Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FB","label":"Group + Member","labelPlural":"Group Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMember/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I5","label":"Group + Member Request","labelPlural":"Group Member Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMemberRequest","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Aa","label":"Group + Record","labelPlural":"Group Records","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupRecord/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H1","label":"Chatter + Invitation","labelPlural":"Chatter Invitations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationInvitation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationInvitation/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationInvitation/describe","sobject":"/services/data/v58.0/sobjects/CollaborationInvitation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9CR","label":"Collaboration + Room","labelPlural":"Collaboration Rooms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationRoom","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationRoom/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationRoom/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationRoom/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationRoom"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05k","label":"Color + Definition","labelPlural":"Color Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ColorDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ColorDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ColorDefinition/describe","sobject":"/services/data/v58.0/sobjects/ColorDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note, + Attachment, Google Doc And File","labelPlural":"Notes, Attachments, Google + Docs And Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CombinedAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CombinedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/CombinedAttachment/describe","sobject":"/services/data/v58.0/sobjects/CombinedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xl","label":"Communication + Subscription","labelPlural":"Communication Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscription/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscription/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscription/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscription/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eB","label":"Communication + Subscription Channel Type","labelPlural":"Communication Subscription Channel + Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Feed","labelPlural":"Communication Subscription + Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type History","labelPlural":"Communication Subscription + Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Share","labelPlural":"Communication Subscription + Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dY","label":"Communication + Subscription Consent","labelPlural":"Communication Subscription Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionConsent/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Change Event","labelPlural":"Communication Subscription + Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Feed","labelPlural":"Communication Subscription Consent + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent History","labelPlural":"Communication Subscription Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Share","labelPlural":"Communication Subscription Consent + Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Feed","labelPlural":"Communication Subscription Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription History","labelPlural":"Communication Subscription History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscription","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Share","labelPlural":"Communication Subscription Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0al","label":"Communication + Subscription Timing","labelPlural":"Communication Subscription Timings","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionTiming","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTiming/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionTiming/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTiming"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing Feed","labelPlural":"Communication Subscription Timing + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing History","labelPlural":"Communication Subscription Timing History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09a","label":"Zone","labelPlural":"Zones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Community","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Community/{ID}","describe":"/services/data/v58.0/sobjects/Community/describe","sobject":"/services/data/v58.0/sobjects/Community"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QR","label":"Concurrent + Long Running Apex Error Event","labelPlural":"Concurrent Long Running Apex + Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConcurLongRunApexErrEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/describe","sobject":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ah","label":"Conference + Number","labelPlural":"Conference Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConferenceNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConferenceNumber/{ID}","describe":"/services/data/v58.0/sobjects/ConferenceNumber/describe","sobject":"/services/data/v58.0/sobjects/ConferenceNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H4","label":"Connected + App","labelPlural":"Connected Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConnectedApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConnectedApplication/{ID}","describe":"/services/data/v58.0/sobjects/ConnectedApplication/describe","sobject":"/services/data/v58.0/sobjects/ConnectedApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mo","label":"Consumption + Rate","labelPlural":"Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionRate/describe","layouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionRate"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionRate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Rate History ID","labelPlural":"Consumption Rate History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionRateHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionRateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mh","label":"Consumption + Schedule","labelPlural":"Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionSchedule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe","quickActions":"/services/data/v58.0/sobjects/ConsumptionSchedule/quickActions","layouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionSchedule"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ConsumptionSchedule","labelPlural":"ConsumptionSchedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule History ID","labelPlural":"Consumption Schedule History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ConsumptionSchedule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule Share","labelPlural":"Consumption Schedule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"003","label":"Contact","labelPlural":"Contacts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Contact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contact/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contact/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contact/listviews","describe":"/services/data/v58.0/sobjects/Contact/describe","quickActions":"/services/data/v58.0/sobjects/Contact/quickActions","layouts":"/services/data/v58.0/sobjects/Contact/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contact"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Change Event","labelPlural":"Contact Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CC","label":"Contact + Clean Info","labelPlural":"Contact Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/ContactCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/ContactCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Feed","labelPlural":"Contact Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContactFeed/describe","sobject":"/services/data/v58.0/sobjects/ContactFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + History","labelPlural":"Contact History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8lW","label":"Contact + Point Address","labelPlural":"Contact Point Addresses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddress/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointAddress/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointAddress/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointAddress"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Change Event","labelPlural":"Contact Point Address Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address History","labelPlural":"Contact Point Address History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointAddress","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Share","labelPlural":"Contact Point Address Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZX","label":"Contact + Point Consent","labelPlural":"Contact Point Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Change Event","labelPlural":"Contact Point Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent History","labelPlural":"Contact Point Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Share","labelPlural":"Contact Point Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Vl","label":"Contact + Point Email","labelPlural":"Contact Point Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmail/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointEmail/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointEmail/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Change Event","labelPlural":"Contact Point Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email History","labelPlural":"Contact Point Email History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Share","labelPlural":"Contact Point Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ow","label":"Contact + Point Phone","labelPlural":"Contact Point Phones","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointPhone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointPhone/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointPhone/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointPhone"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Change Event","labelPlural":"Contact Point Phone Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone History","labelPlural":"Contact Point Phone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointPhone","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Share","labelPlural":"Contact Point Phone Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZY","label":"Contact + Point Type Consent","labelPlural":"Contact Point Type Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointTypeConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Change Event","labelPlural":"Contact Point Type Consent + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent History","labelPlural":"Contact Point Type Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointTypeConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Share","labelPlural":"Contact Point Type Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tz","label":"Contact + Request","labelPlural":"Contact Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactRequest/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequest/describe","layouts":"/services/data/v58.0/sobjects/ContactRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Request Share","labelPlural":"Contact Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ContactRequestShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03s","label":"Contact + Share","labelPlural":"Contact Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactShare/describe","sobject":"/services/data/v58.0/sobjects/ContactShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03S","label":"Asset + File","labelPlural":"Asset Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentAsset/{ID}","describe":"/services/data/v58.0/sobjects/ContentAsset/describe","sobject":"/services/data/v58.0/sobjects/ContentAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05T","label":"Content + Body","labelPlural":"Content Bodies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentBody","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentBody/{ID}","describe":"/services/data/v58.0/sobjects/ContentBody/describe","sobject":"/services/data/v58.0/sobjects/ContentBody"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05D","label":"Content + Delivery","labelPlural":"Content Deliveries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistribution","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistribution/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistribution/describe","sobject":"/services/data/v58.0/sobjects/ContentDistribution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05H","label":"Content + Delivery View","labelPlural":"Content Delivery Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistributionView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistributionView/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistributionView/describe","sobject":"/services/data/v58.0/sobjects/ContentDistributionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"069","label":"Content + Document","labelPlural":"Content Documents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContentDocument","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocument/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocument/describe","layouts":"/services/data/v58.0/sobjects/ContentDocument/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocument"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Change Event","labelPlural":"Content Document Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ContentDocument + Feed","labelPlural":"ContentDocument Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentFeed/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document History","labelPlural":"Content Document History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06A","label":"Content + Document Link","labelPlural":"Content Document Link","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentLink/describe","layouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocumentLink"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocumentLink","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Link Change Event","labelPlural":"Content Document Link Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLinkChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"057","label":"Content + Document Subscription","labelPlural":"Content Document Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07H","label":"Content + Folder","labelPlural":"Content Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolder/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolder/describe","sobject":"/services/data/v58.0/sobjects/ContentFolder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Folder Item","labelPlural":"Content Folder Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentFolderItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentFolderItem/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderItem/describe","layouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentFolderItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07v","label":"Content + Folder Link","labelPlural":"Content Folder Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderLink/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07I","label":"Content + Folder Member","labelPlural":"Content Folder Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderMember/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05V","label":"Content + Notification","labelPlural":"Content Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentNotification/{ID}","describe":"/services/data/v58.0/sobjects/ContentNotification/describe","sobject":"/services/data/v58.0/sobjects/ContentNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05Q","label":"Content + Tag Subscription","labelPlural":"Content Tag Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentTagSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentTagSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentTagSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentTagSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05S","label":"Content + User Subscription","labelPlural":"Content User Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentUserSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentUserSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentUserSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentUserSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"068","label":"Content + Version","labelPlural":"Content Versions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentVersion/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentVersion/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersion/describe","layouts":"/services/data/v58.0/sobjects/ContentVersion/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentVersion"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version Change Event","labelPlural":"Content Version Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05C","label":"Content + Version Comment","labelPlural":"Content Version Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionComment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionComment/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionComment/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionComment"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version History","labelPlural":"Content Version History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05J","label":"Content + Version Rating","labelPlural":"Content Version Ratings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionRating","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionRating/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionRating/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionRating"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"058","label":"Library","labelPlural":"Libraries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspace","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspace/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspace/describe","layouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentWorkspace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"059","label":"Library + Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library + Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library + Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract + Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + History","labelPlural":"Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"811","label":"Contract + Line Item","labelPlural":"Contract Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineItem/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Change Event","labelPlural":"Contract Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Feed","labelPlural":"Contract Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item History","labelPlural":"Contract Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3lp","label":"Contract + Line Outcome","labelPlural":"Contract Line Outcomes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcome","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcome/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcome/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineOutcome/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcome"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sD","label":"Contract + Line Outcome Data","labelPlural":"Contract Line Outcome Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcomeData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeData/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe","layouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineOutcomeData","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Data Change Event","labelPlural":"Contract Line Outcome Data + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeDataChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential + Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential + Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential + Stuffing Event Store Feed","labelPlural":"Credential Stuffing Event Store + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"50g","label":"Credit + Memo","labelPlural":"Credit Memos","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CreditMemo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemo/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemo/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemo/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemo/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Feed","labelPlural":"Credit Memo Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo History","labelPlural":"Credit Memo History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4sF","label":"Credit + Memo Invoice Application","labelPlural":"Credit Memo Invoice Applications","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplication","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplication/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoInvApplication/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplication"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Invoice Application History","labelPlural":"Credit Memo Invoice Application History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9yx","label":"Credit + Memo Line","labelPlural":"Credit Memo Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoLine/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoLine/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line Feed","labelPlural":"Credit Memo Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line History","labelPlural":"Credit Memo Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CreditMemo","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Share","labelPlural":"Credit Memo Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoShare/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoShare/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08a","label":"Cron + Job","labelPlural":"Cron Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronJobDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronJobDetail/{ID}","describe":"/services/data/v58.0/sobjects/CronJobDetail/describe","sobject":"/services/data/v58.0/sobjects/CronJobDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08e","label":"Scheduled + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom + Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom + Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom + Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom + Help Menu Section","labelPlural":"Custom Help Menu Sections","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuSection","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuSection/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuSection/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuSection"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XH","label":"Custom + HTTP Header","labelPlural":"Custom HTTP Headers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomHttpHeader","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomHttpHeader/{ID}","describe":"/services/data/v58.0/sobjects/CustomHttpHeader/describe","layouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomHttpHeader"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ML","label":"Custom + Notification Type","labelPlural":"Custom Notification Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomNotificationType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomNotificationType/{ID}","describe":"/services/data/v58.0/sobjects/CustomNotificationType/describe","sobject":"/services/data/v58.0/sobjects/CustomNotificationType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3NA","label":"Custom + Object Usage By User License Metric","labelPlural":"Custom Object Usage By + User License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomObjectUserLicenseMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/{ID}","describe":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/describe","sobject":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CP","label":"Custom + Permission","labelPlural":"Custom Permissions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermission/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermission/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermission/describe","layouts":"/services/data/v58.0/sobjects/CustomPermission/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PD","label":"Custom + Permission Dependency","labelPlural":"Custom Permission Dependencies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermissionDependency","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermissionDependency/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe","layouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermissionDependency"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0o6","label":"Customer","labelPlural":"Customers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Customer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Customer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Customer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Customer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Customer/describe","layouts":"/services/data/v58.0/sobjects/Customer/describe/layouts","sobject":"/services/data/v58.0/sobjects/Customer"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Customer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Customer + Share","labelPlural":"Customer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomerShare/{ID}","describe":"/services/data/v58.0/sobjects/CustomerShare/describe","sobject":"/services/data/v58.0/sobjects/CustomerShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06E","label":"D&B + Company","labelPlural":"D&B Companies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DandBCompany","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Z","label":"Dashboard","labelPlural":"Dashboards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Dashboard","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Dashboard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Dashboard/{ID}","listviews":"/services/data/v58.0/sobjects/Dashboard/listviews","describe":"/services/data/v58.0/sobjects/Dashboard/describe","layouts":"/services/data/v58.0/sobjects/Dashboard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Dashboard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01a","label":"Dashboard + Component","labelPlural":"Dashboard Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponent/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponent/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"DashboardComponent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Component Feed","labelPlural":"Dashboard Component Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponentFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponentFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponentFeed"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Dashboard","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Feed","labelPlural":"Dashboard Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03Q","label":"Data + Assessment Field Metric","labelPlural":"Data Assessment Field Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentFieldMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03P","label":"Data + Assessment Metric","labelPlural":"Data Assessment Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03R","label":"Data + Assessment Field Value Metric","labelPlural":"Data Assessment Field Value + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentValueMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentValueMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1e5","label":"Data + Object Data Change Event","labelPlural":"Data Object Data Change Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataObjectDataChgEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/describe","sobject":"/services/data/v58.0/sobjects/DataObjectDataChgEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05a","label":"Data + Statistics","labelPlural":"Data Statistics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataStatistics","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataStatistics/{ID}","describe":"/services/data/v58.0/sobjects/DataStatistics/describe","sobject":"/services/data/v58.0/sobjects/DataStatistics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4dt","label":"Data + Type","labelPlural":"Data Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataType/{ID}","describe":"/services/data/v58.0/sobjects/DataType/describe","sobject":"/services/data/v58.0/sobjects/DataType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZT","label":"Data + Use Legal Basis","labelPlural":"Data Use Legal Bases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUseLegalBasis","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasis/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe","layouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasis"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUseLegalBasis","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis History","labelPlural":"Data Use Legal Basis History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUseLegalBasis","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis Share","labelPlural":"Data Use Legal Basis Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZW","label":"Data + Use Purpose","labelPlural":"Data Use Purposes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUsePurpose","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUsePurpose/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUsePurpose/describe","quickActions":"/services/data/v58.0/sobjects/DataUsePurpose/quickActions","layouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUsePurpose"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUsePurpose","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose History","labelPlural":"Data Use Purpose History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUsePurpose","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose Share","labelPlural":"Data Use Purpose Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeShare/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07m","label":"Data.com + Address","labelPlural":"Data.com Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudAddress","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudAddress/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudAddress/describe","sobject":"/services/data/v58.0/sobjects/DatacloudAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09K","label":"Data.com + Company","labelPlural":"Data.com Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08C","label":"Data.com + Contact","labelPlural":"Data.com Contacts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudContact","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudContact/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudContact/describe","sobject":"/services/data/v58.0/sobjects/DatacloudContact"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09N","label":"D&B + Company","labelPlural":"DandB Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudDandBCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudDandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudDandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09O","label":"Data.com + Owned Entity","labelPlural":"Data.com Owned Entity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudOwnedEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/describe","sobject":"/services/data/v58.0/sobjects/DatacloudOwnedEntity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09F","label":"Data.com + Usage","labelPlural":"Data.com Usage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudPurchaseUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/describe","sobject":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Declined + Event Relation","labelPlural":"Declined Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeclinedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeclinedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/DeclinedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/DeclinedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00C","label":"Recycle + Bin Item","labelPlural":"Recycle Bin","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeleteEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeleteEvent/{ID}","describe":"/services/data/v58.0/sobjects/DeleteEvent/describe","sobject":"/services/data/v58.0/sobjects/DeleteEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DS","label":"Digital + Signature","labelPlural":"Digital Signatures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignature","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignature/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DigitalSignature/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DigitalSignature/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignature"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"DigitalSignature","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Digital + Signature Change Event","labelPlural":"Digital Signature Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignatureChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DW","label":"Digital + Wallet","labelPlural":"Digital Wallets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DigitalWallet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DigitalWallet/{ID}","describe":"/services/data/v58.0/sobjects/DigitalWallet/describe","quickActions":"/services/data/v58.0/sobjects/DigitalWallet/quickActions","layouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DigitalWallet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"015","label":"Document","labelPlural":"Documents","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Document","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Document/{ID}","describe":"/services/data/v58.0/sobjects/Document/describe","sobject":"/services/data/v58.0/sobjects/Document"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05X","label":"Document + Entity Map","labelPlural":"Document Entity Map","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DocumentAttachmentMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DocumentAttachmentMap/{ID}","describe":"/services/data/v58.0/sobjects/DocumentAttachmentMap/describe","sobject":"/services/data/v58.0/sobjects/DocumentAttachmentMap"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I4","label":"Domain","labelPlural":"Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Domain","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Domain/{ID}","describe":"/services/data/v58.0/sobjects/Domain/describe","sobject":"/services/data/v58.0/sobjects/Domain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jf","label":"Custom + URL","labelPlural":"Custom URLs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DomainSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DomainSite/{ID}","describe":"/services/data/v58.0/sobjects/DomainSite/describe","sobject":"/services/data/v58.0/sobjects/DomainSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GL","label":"Duplicate + Record Item","labelPlural":"Duplicate Record Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DuplicateRecordItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GK","label":"Duplicate + Record Set","labelPlural":"Duplicate Record Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRecordSet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordSet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bm","label":"Duplicate + Rule","labelPlural":"Duplicate Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRule/{ID}","describe":"/services/data/v58.0/sobjects/DuplicateRule/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06F","label":"EmailCapture","labelPlural":"Email + Captures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailCapture","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailCapture/{ID}","describe":"/services/data/v58.0/sobjects/EmailCapture/describe","sobject":"/services/data/v58.0/sobjects/EmailCapture"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T6","label":"Email + Domain Filter","labelPlural":"Email Domain Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainFilter/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainFilter/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09P","label":"Email + Domain Key","labelPlural":"Email Domain Keys","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainKey","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainKey/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainKey/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainKey"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02s","label":"Email + Message","labelPlural":"Email Messages","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EmailMessage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailMessage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EmailMessage/describe","quickActions":"/services/data/v58.0/sobjects/EmailMessage/quickActions","layouts":"/services/data/v58.0/sobjects/EmailMessage/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailMessage"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailMessage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Message Change Event","labelPlural":"Email Message Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CZ","label":"Email + Message Relation","labelPlural":"Email Message Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageRelation/{ID}","describe":"/services/data/v58.0/sobjects/EmailMessageRelation/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"26Z","label":"Email + Relay","labelPlural":"Email Relay","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailRelay","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailRelay/{ID}","describe":"/services/data/v58.0/sobjects/EmailRelay/describe","sobject":"/services/data/v58.0/sobjects/EmailRelay"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"093","label":"Email + Services Address","labelPlural":"Email Services Address","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesAddress/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesAddress/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"091","label":"Email + Service","labelPlural":"Email Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesFunction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesFunction/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesFunction/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"018","label":"Email + Status","labelPlural":"Email Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailStatus/{ID}","describe":"/services/data/v58.0/sobjects/EmailStatus/describe","sobject":"/services/data/v58.0/sobjects/EmailStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00X","label":"Email + Template","labelPlural":"Email Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EmailTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EmailTemplate/describe","layouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Template Change Event","labelPlural":"Email Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lq","label":"Embedded + Service","labelPlural":"Embedded Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uu","label":"Embedded + Service Label","labelPlural":"Embedded Service Labels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceLabel","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceLabel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eF","label":"Engagement + Channel Type","labelPlural":"Engagement Channel Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EngagementChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EngagementChannelType/describe","quickActions":"/services/data/v58.0/sobjects/EngagementChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/EngagementChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Feed","labelPlural":"Engagement Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type History","labelPlural":"Engagement Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"EngagementChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Share","labelPlural":"Engagement Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rn","label":"Enhanced + Letterhead","labelPlural":"Enhanced Letterheads","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EnhancedLetterhead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterhead/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe","layouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/layouts","sobject":"/services/data/v58.0/sobjects/EnhancedLetterhead"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EnhancedLetterhead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Enhanced + Letterhead Feed","labelPlural":"Enhanced Letterhead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EnhancedLetterheadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/describe","sobject":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"550","label":"Entitlement","labelPlural":"Entitlements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Entitlement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Entitlement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Entitlement/describe","layouts":"/services/data/v58.0/sobjects/Entitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/Entitlement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Change Event","labelPlural":"Entitlement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EntitlementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EntitlementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EntitlementChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E7","label":"Entitlement + Contact","labelPlural":"Entitlement Contacts","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntitlementContact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntitlementContact/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementContact/describe","layouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntitlementContact"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Feed","labelPlural":"Entitlement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementFeed/describe","sobject":"/services/data/v58.0/sobjects/EntitlementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + History","labelPlural":"Entitlement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementHistory/describe","sobject":"/services/data/v58.0/sobjects/EntitlementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"551","label":"Entitlement + Template","labelPlural":"Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/EntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ie","label":"Entity + Definition","labelPlural":"Entity Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityDefinition/{ID}","describe":"/services/data/v58.0/sobjects/EntityDefinition/describe","sobject":"/services/data/v58.0/sobjects/EntityDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1EM","label":"Object + Milestone","labelPlural":"Object Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntityMilestone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntityMilestone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EntityMilestone/describe","quickActions":"/services/data/v58.0/sobjects/EntityMilestone/quickActions","layouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntityMilestone"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone Feed","labelPlural":"Object Milestone Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneFeed/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone History","labelPlural":"Object Milestone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneHistory/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nv","label":"Entity + Particle","labelPlural":"Entity Particles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityParticle","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityParticle/{ID}","describe":"/services/data/v58.0/sobjects/EntityParticle/describe","sobject":"/services/data/v58.0/sobjects/EntityParticle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E8","label":"Entity + Subscription","labelPlural":"Entity Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitySubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitySubscription/{ID}","describe":"/services/data/v58.0/sobjects/EntitySubscription/describe","sobject":"/services/data/v58.0/sobjects/EntitySubscription"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Error_Log__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Log","labelPlural":"Change Event: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Error_Log__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Error Log","labelPlural":"Share: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__Share/{ID}","describe":"/services/data/v58.0/sobjects/Error_Log__Share/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1M","label":"Error + Log","labelPlural":"Connection Error Log","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Error_Log__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Error_Log__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Error_Log__c/describe","quickActions":"/services/data/v58.0/sobjects/Error_Log__c/quickActions","layouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Error_Log__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00U","label":"Event","labelPlural":"Events","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Event","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Event/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Event/{ID}","eventSeriesUpdates":"/services/data/v58.0/sobjects/Event/{ID}/fromThisEventOnwards","describe":"/services/data/v58.0/sobjects/Event/describe","quickActions":"/services/data/v58.0/sobjects/Event/quickActions","layouts":"/services/data/v58.0/sobjects/Event/describe/layouts","sobject":"/services/data/v58.0/sobjects/Event"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cd","label":"Platform + Event Subscription","labelPlural":"Platform Event Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventBusSubscriber","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventBusSubscriber/{ID}","describe":"/services/data/v58.0/sobjects/EventBusSubscriber/describe","sobject":"/services/data/v58.0/sobjects/EventBusSubscriber"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Change Event","labelPlural":"Event Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Feed","labelPlural":"Event Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventFeed/{ID}","describe":"/services/data/v58.0/sobjects/EventFeed/describe","sobject":"/services/data/v58.0/sobjects/EventFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AT","label":"Event + Log File","labelPlural":"Event Log Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventLogFile","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventLogFile/{ID}","describe":"/services/data/v58.0/sobjects/EventLogFile/describe","sobject":"/services/data/v58.0/sobjects/EventLogFile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0RE","label":"Event + Relation","labelPlural":"Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelation/{ID}","describe":"/services/data/v58.0/sobjects/EventRelation/describe","sobject":"/services/data/v58.0/sobjects/EventRelation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relation Change Event","labelPlural":"Event Relation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k2","label":"Event + Relay Config","labelPlural":"Event Relay Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfig/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayConfig/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfig"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelayConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relay Config Change Event","labelPlural":"Event Relay Config Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfigChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k4","label":"Event + Relay Feedback","labelPlural":"Event Relay Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayFeedback/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayFeedback/describe","sobject":"/services/data/v58.0/sobjects/EventRelayFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1V4","label":"Expense","labelPlural":"Expenses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Expense","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Expense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Expense/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Expense/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Expense/describe","quickActions":"/services/data/v58.0/sobjects/Expense/quickActions","layouts":"/services/data/v58.0/sobjects/Expense/describe/layouts","sobject":"/services/data/v58.0/sobjects/Expense"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Change Event","labelPlural":"Expense Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ExpenseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ExpenseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ExpenseChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Feed","labelPlural":"Expense Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + History","labelPlural":"Expense History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6g5","label":"Expense + Report","labelPlural":"Expense Reports","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReport/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExpenseReport/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReport/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReport"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3zl","label":"Expense + Report Entry","labelPlural":"Expense Report Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReportEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntry/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReportEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntry"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry Feed","labelPlural":"Expense Report Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry History","labelPlural":"Expense Report Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Feed","labelPlural":"Expense Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report History","labelPlural":"Expense Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExpenseReport","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Share","labelPlural":"Expense Report Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Expense","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Share","labelPlural":"Expense Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1GS","label":"ExpressionFilter","labelPlural":"ExpressionFilters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilter/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilter/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8BM","label":"ExpressionFilterCriteria","labelPlural":"ExpressionFilterCriteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilterCriteria"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pz","label":"Expression + Set View","labelPlural":"Expression Set Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionSetView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionSetView/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionSetView/describe","sobject":"/services/data/v58.0/sobjects/ExpressionSetView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XC","label":"External + Data Source","labelPlural":"External Data Sources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ExternalDataSource","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSource/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSource/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6Ay","label":"External + Data Source Descriptor","labelPlural":"External Data Source Descriptors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataSrcDescriptor","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XU","label":"External + Data User Authentication","labelPlural":"External Data User Authentications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataUserAuth","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataUserAuth/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataUserAuth/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataUserAuth"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AY","label":"External + Event","labelPlural":"External Events","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ExternalEvent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExternalEvent/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEvent/describe","layouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExternalEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08N","label":"External + Event Mapping","labelPlural":"External Event Mappings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMapping","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMapping/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExternalEventMapping/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExternalEventMapping/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMapping"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExternalEventMapping","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"External + Event Mapping Share","labelPlural":"External Event Mapping Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMappingShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMappingShare/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEventMappingShare/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMappingShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08M","label":"Feed + Attachment","labelPlural":"Feed Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedAttachment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/FeedAttachment/describe","sobject":"/services/data/v58.0/sobjects/FeedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D7","label":"Feed + Comment","labelPlural":"Feed Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedComment/{ID}","describe":"/services/data/v58.0/sobjects/FeedComment/describe","sobject":"/services/data/v58.0/sobjects/FeedComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D5","label":"Feed + Item","labelPlural":"Feed Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FeedItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedItem/{ID}","describe":"/services/data/v58.0/sobjects/FeedItem/describe","quickActions":"/services/data/v58.0/sobjects/FeedItem/quickActions","layouts":"/services/data/v58.0/sobjects/FeedItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FeedItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I0","label":"Feed + Like","labelPlural":"Feed Likes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedLike","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedLike/{ID}","describe":"/services/data/v58.0/sobjects/FeedLike/describe","sobject":"/services/data/v58.0/sobjects/FeedLike"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09A","label":"Feed + Poll Choice","labelPlural":"Feed Poll Choices","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollChoice","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollChoice/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollChoice/describe","sobject":"/services/data/v58.0/sobjects/FeedPollChoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09B","label":"Feed + Poll Vote","labelPlural":"Feed Poll Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollVote","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollVote/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollVote/describe","sobject":"/services/data/v58.0/sobjects/FeedPollVote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08U","label":"Feed + Revision","labelPlural":"Feed Revisions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedRevision","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedRevision/{ID}","describe":"/services/data/v58.0/sobjects/FeedRevision/describe","sobject":"/services/data/v58.0/sobjects/FeedRevision"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QJ","label":"Feed + Signal","labelPlural":"Feed Signals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedSignal","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedSignal/{ID}","describe":"/services/data/v58.0/sobjects/FeedSignal/describe","sobject":"/services/data/v58.0/sobjects/FeedSignal"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D6","label":"Feed + Tracked Change","labelPlural":"Feed Tracked Changes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedTrackedChange","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedTrackedChange/{ID}","describe":"/services/data/v58.0/sobjects/FeedTrackedChange/describe","sobject":"/services/data/v58.0/sobjects/FeedTrackedChange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fe","label":"Field + Definition","labelPlural":"Field Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldDefinition/{ID}","describe":"/services/data/v58.0/sobjects/FieldDefinition/describe","sobject":"/services/data/v58.0/sobjects/FieldDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01k","label":"Field + Permissions","labelPlural":"Field Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldPermissions/{ID}","describe":"/services/data/v58.0/sobjects/FieldPermissions/describe","sobject":"/services/data/v58.0/sobjects/FieldPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Security Classification","labelPlural":"Field Security Classifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldSecurityClassification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldSecurityClassification/{ID}","describe":"/services/data/v58.0/sobjects/FieldSecurityClassification/describe","sobject":"/services/data/v58.0/sobjects/FieldSecurityClassification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mf","label":"Field + Service Mobile Settings","labelPlural":"Field Service Mobile Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe","layouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/layouts","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettings"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FieldServiceMobileSettings","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Service Mobile Settings Change Event","labelPlural":"Field Service Mobile + Settings Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettingsChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UJ","label":"Field + Service Org Settings","labelPlural":"Field Service Org Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceOrgSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceOrgSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0vI","label":"File + Event","labelPlural":"File Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FileEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FileEvent/describe","sobject":"/services/data/v58.0/sobjects/FileEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0wg","label":"File + Event Store","labelPlural":"File Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEventStore/{ID}","describe":"/services/data/v58.0/sobjects/FileEventStore/describe","sobject":"/services/data/v58.0/sobjects/FileEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06h","label":"FileSearchActivity","labelPlural":"File + Search Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileSearchActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileSearchActivity/{ID}","describe":"/services/data/v58.0/sobjects/FileSearchActivity/describe","sobject":"/services/data/v58.0/sobjects/FileSearchActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2kA","label":"Finance + Balance Snapshot","labelPlural":"Finance Balance Snapshots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceBalanceSnapshot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe","quickActions":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceBalanceSnapshot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Change Event","labelPlural":"Finance Balance Snapshot Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceBalanceSnapshot","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Share","labelPlural":"Finance Balance Snapshot Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0n3","label":"Finance + Transaction","labelPlural":"Finance Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceTransaction/describe","quickActions":"/services/data/v58.0/sobjects/FinanceTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceTransaction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Change Event","labelPlural":"Finance Transaction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceTransaction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Share","labelPlural":"Finance Transaction Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceTransactionShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"022","label":"Fiscal + Year Settings","labelPlural":"Fiscal Year Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FiscalYearSettings","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FiscalYearSettings/{ID}","describe":"/services/data/v58.0/sobjects/FiscalYearSettings/describe","sobject":"/services/data/v58.0/sobjects/FiscalYearSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06i","label":"Flex + Queue Item","labelPlural":"Flex Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlexQueueItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlexQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/FlexQueueItem/describe","sobject":"/services/data/v58.0/sobjects/FlexQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3dd","label":"Flow + Definition","labelPlural":"Flow Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowDefinitionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowDefinitionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowDefinitionView/describe","sobject":"/services/data/v58.0/sobjects/FlowDefinitionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eC","label":"Flow + Execution Error Event","labelPlural":"Flow Execution Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowExecutionErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fo","label":"Flow + Interview","labelPlural":"Flow Interviews","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowInterview","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowInterview/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowInterview/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterview/describe","layouts":"/services/data/v58.0/sobjects/FlowInterview/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowInterview"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8gZ","label":"Flow + Interview Log","labelPlural":"Flow Interview Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLog/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLog/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f6","label":"Flow + Interview Log Entry","labelPlural":"Flow Interview Log Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogEntry"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterviewLog","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Log Share","labelPlural":"Flow Interview Log Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterview","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Share","labelPlural":"Flow Interview Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jo","label":"Orchestration + Event","labelPlural":"Orchestration Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jE","label":"Orchestration + Run","labelPlural":"Orchestration Runs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Run Share","labelPlural":"Orchestration Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jF","label":"Orchestration + Stage Run","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration + Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration + Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow + Record Relation","labelPlural":"Flow Record Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowRecordRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowRecordRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowRecordRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowRecordRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31y","label":"Flow + Interview Stage Relation","labelPlural":"Flow Interview Stage Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowStageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowStageRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowStageRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowStageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2hU","label":"Flow + Test Result","labelPlural":"Flow Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResult/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResult/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResult"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowTestResult","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Test Result Share","labelPlural":"Flow Test Result Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResultShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResultShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResultShare/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResultShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YB","label":"Flow + Test View","labelPlural":"Flow Test Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestView/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestView/describe","sobject":"/services/data/v58.0/sobjects/FlowTestView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3ad","label":"Flow + Variable","labelPlural":"Flow Variables","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVariableView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVariableView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVariableView/describe","sobject":"/services/data/v58.0/sobjects/FlowVariableView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3vd","label":"Flow + Version","labelPlural":"Flow Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVersionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVersionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVersionView/describe","sobject":"/services/data/v58.0/sobjects/FlowVersionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00l","label":"Folder","labelPlural":"Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Folder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Folder/{ID}","describe":"/services/data/v58.0/sobjects/Folder/describe","sobject":"/services/data/v58.0/sobjects/Folder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Foldered + Content Document","labelPlural":"Foldered Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FolderedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FolderedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/FolderedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/FolderedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kn","label":"Formula + Function","labelPlural":"Formula Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunction/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunction/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fE","label":"Formula + Context Function","labelPlural":"Formula Context Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionAllowedType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kh","label":"Formula + Function Category","labelPlural":"Formula Function Categories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionCategory","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionCategory/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionCategory/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionCategory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06d","label":"Setting + Granted By License","labelPlural":"Settings Granted By Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GrantedByLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GrantedByLicense/{ID}","describe":"/services/data/v58.0/sobjects/GrantedByLicense/describe","sobject":"/services/data/v58.0/sobjects/GrantedByLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00G","label":"Group","labelPlural":"Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Group","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Group/{ID}","describe":"/services/data/v58.0/sobjects/Group/describe","sobject":"/services/data/v58.0/sobjects/Group"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"011","label":"Group + Member","labelPlural":"Group Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GroupMember/{ID}","describe":"/services/data/v58.0/sobjects/GroupMember/describe","sobject":"/services/data/v58.0/sobjects/GroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1gp","label":"Gateway + Provider Payment Method Type","labelPlural":"Gateway Provider Payment Method + Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"GtwyProvPaymentMethodType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/{ID}","describe":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/describe","sobject":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C0","label":"Holiday","labelPlural":"Holidays","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Holiday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Holiday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Holiday/{ID}","describe":"/services/data/v58.0/sobjects/Holiday/describe","layouts":"/services/data/v58.0/sobjects/Holiday/describe/layouts","sobject":"/services/data/v58.0/sobjects/Holiday"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9s4","label":"IP + Address Range","labelPlural":"IP Address Ranges","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"IPAddressRange","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/IPAddressRange/{ID}","describe":"/services/data/v58.0/sobjects/IPAddressRange/describe","layouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/layouts","sobject":"/services/data/v58.0/sobjects/IPAddressRange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09k","label":"Icon + Definition","labelPlural":"Icon Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IconDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IconDefinition/{ID}","describe":"/services/data/v58.0/sobjects/IconDefinition/describe","sobject":"/services/data/v58.0/sobjects/IconDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"087","label":"Idea","labelPlural":"Ideas","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Idea","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Idea/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Idea/{ID}","describe":"/services/data/v58.0/sobjects/Idea/describe","layouts":"/services/data/v58.0/sobjects/Idea/describe/layouts","sobject":"/services/data/v58.0/sobjects/Idea"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Idea","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Idea + Comment","labelPlural":"Idea Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdeaComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdeaComment/{ID}","describe":"/services/data/v58.0/sobjects/IdeaComment/describe","sobject":"/services/data/v58.0/sobjects/IdeaComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0k8","label":"Identity + Provider Event Store","labelPlural":"Identity Provider Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityProviderEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityProviderEventStore/{ID}","describe":"/services/data/v58.0/sobjects/IdentityProviderEventStore/describe","sobject":"/services/data/v58.0/sobjects/IdentityProviderEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jx","label":"Identity + Verification Event","labelPlural":"Identity Verification Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityVerificationEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityVerificationEvent/{ID}","describe":"/services/data/v58.0/sobjects/IdentityVerificationEvent/describe","sobject":"/services/data/v58.0/sobjects/IdentityVerificationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yu","label":"Identity + Provider Event Log","labelPlural":"Identity Event Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdpEventLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdpEventLog/{ID}","describe":"/services/data/v58.0/sobjects/IdpEventLog/describe","sobject":"/services/data/v58.0/sobjects/IdpEventLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6TS","label":"Trusted + Domain for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/IframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/IframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YL","label":"Image","labelPlural":"Images","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Image","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Image/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Image/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Image/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Image/describe","quickActions":"/services/data/v58.0/sobjects/Image/quickActions","layouts":"/services/data/v58.0/sobjects/Image/describe/layouts","sobject":"/services/data/v58.0/sobjects/Image"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Feed","labelPlural":"Image Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ImageFeed/describe","sobject":"/services/data/v58.0/sobjects/ImageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + History","labelPlural":"Image History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ImageHistory/describe","sobject":"/services/data/v58.0/sobjects/ImageHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Image","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Share","labelPlural":"Image Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageShare/{ID}","describe":"/services/data/v58.0/sobjects/ImageShare/describe","sobject":"/services/data/v58.0/sobjects/ImageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PK","label":"Individual","labelPlural":"Individuals","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Individual","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Individual/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Individual/{ID}","describe":"/services/data/v58.0/sobjects/Individual/describe","quickActions":"/services/data/v58.0/sobjects/Individual/quickActions","layouts":"/services/data/v58.0/sobjects/Individual/describe/layouts","sobject":"/services/data/v58.0/sobjects/Individual"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + Change Event","labelPlural":"Individual Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/IndividualChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/IndividualChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/IndividualChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + History","labelPlural":"Individual History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualHistory/{ID}","describe":"/services/data/v58.0/sobjects/IndividualHistory/describe","sobject":"/services/data/v58.0/sobjects/IndividualHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Individual","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T5","label":"Individual + Share","labelPlural":"Individual Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualShare/{ID}","describe":"/services/data/v58.0/sobjects/IndividualShare/describe","sobject":"/services/data/v58.0/sobjects/IndividualShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0El","label":"Installed + Mobile App","labelPlural":"Installed Mobile Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InstalledMobileApp","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InstalledMobileApp/{ID}","describe":"/services/data/v58.0/sobjects/InstalledMobileApp/describe","sobject":"/services/data/v58.0/sobjects/InstalledMobileApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3tt","label":"Invoice","labelPlural":"Invoices","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Invoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Invoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Invoice/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Invoice/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Invoice/describe","quickActions":"/services/data/v58.0/sobjects/Invoice/quickActions","layouts":"/services/data/v58.0/sobjects/Invoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/Invoice"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Feed","labelPlural":"Invoice Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice History","labelPlural":"Invoice History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5TV","label":"Invoice + Line","labelPlural":"Invoice Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"InvoiceLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/InvoiceLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/InvoiceLine/describe","quickActions":"/services/data/v58.0/sobjects/InvoiceLine/quickActions","layouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/InvoiceLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line Feed","labelPlural":"Invoice Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line History","labelPlural":"Invoice Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Invoice","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Share","labelPlural":"Invoice Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceShare/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceShare/describe","sobject":"/services/data/v58.0/sobjects/InvoiceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jp","label":"Job + Profile","labelPlural":"Job Profiles","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"JobProfile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/JobProfile/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/JobProfile/describe","quickActions":"/services/data/v58.0/sobjects/JobProfile/quickActions","layouts":"/services/data/v58.0/sobjects/JobProfile/describe/layouts","sobject":"/services/data/v58.0/sobjects/JobProfile"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Feed","labelPlural":"Job Profile Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileFeed/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileFeed/describe","sobject":"/services/data/v58.0/sobjects/JobProfileFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile History","labelPlural":"Job Profile History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileHistory/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileHistory/describe","sobject":"/services/data/v58.0/sobjects/JobProfileHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"JobProfile","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Share","labelPlural":"Job Profile Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileShare/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileShare/describe","sobject":"/services/data/v58.0/sobjects/JobProfileShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0in","label":"Knowledgeable + User","labelPlural":"Knowledgeable Users","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"KnowledgeableUser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/KnowledgeableUser/{ID}","describe":"/services/data/v58.0/sobjects/KnowledgeableUser/describe","sobject":"/services/data/v58.0/sobjects/KnowledgeableUser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00Q","label":"Lead","labelPlural":"Leads","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Lead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Lead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Lead/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Lead/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Lead/listviews","describe":"/services/data/v58.0/sobjects/Lead/describe","quickActions":"/services/data/v58.0/sobjects/Lead/quickActions","layouts":"/services/data/v58.0/sobjects/Lead/describe/layouts","sobject":"/services/data/v58.0/sobjects/Lead"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Change Event","labelPlural":"Lead Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LeadChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LeadChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LeadChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CL","label":"Lead + Clean Info","labelPlural":"Lead Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/LeadCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/LeadCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Feed","labelPlural":"Lead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadFeed/{ID}","describe":"/services/data/v58.0/sobjects/LeadFeed/describe","sobject":"/services/data/v58.0/sobjects/LeadFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + History","labelPlural":"Lead History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadHistory/{ID}","describe":"/services/data/v58.0/sobjects/LeadHistory/describe","sobject":"/services/data/v58.0/sobjects/LeadHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Lead","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01o","label":"Lead + Share","labelPlural":"Lead Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadShare/{ID}","describe":"/services/data/v58.0/sobjects/LeadShare/describe","sobject":"/services/data/v58.0/sobjects/LeadShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Lead + Status Value","labelPlural":"Lead Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadStatus/{ID}","describe":"/services/data/v58.0/sobjects/LeadStatus/describe","sobject":"/services/data/v58.0/sobjects/LeadStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fw","label":"Legal + Entity","labelPlural":"Legal Entities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LegalEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LegalEntity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LegalEntity/describe","quickActions":"/services/data/v58.0/sobjects/LegalEntity/quickActions","layouts":"/services/data/v58.0/sobjects/LegalEntity/describe/layouts","sobject":"/services/data/v58.0/sobjects/LegalEntity"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityFeed/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityFeed/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity History","labelPlural":"Legal Entity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityHistory/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityHistory/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LegalEntity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity Share","labelPlural":"Legal Entity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityShare/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityShare/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0S1","label":"Lightning + Experience Theme","labelPlural":"Lightning Experience Themes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningExperienceTheme","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningExperienceTheme/{ID}","describe":"/services/data/v58.0/sobjects/LightningExperienceTheme/describe","sobject":"/services/data/v58.0/sobjects/LightningExperienceTheme"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7MM","label":"LightningOnboardingConfig","labelPlural":"LightningOnboardingConfigs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningOnboardingConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningOnboardingConfig/{ID}","describe":"/services/data/v58.0/sobjects/LightningOnboardingConfig/describe","sobject":"/services/data/v58.0/sobjects/LightningOnboardingConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bh","label":"Lightning + URI Event","labelPlural":"Lightning URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEvent/{ID}","describe":"/services/data/v58.0/sobjects/LightningUriEvent/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bi","label":"Lightning + URI Event Stream","labelPlural":"Lightning URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LightningUriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LightningUriEventStream/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XB","label":"List + Email","labelPlural":"List Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ListEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ListEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ListEmail/{ID}","describe":"/services/data/v58.0/sobjects/ListEmail/describe","layouts":"/services/data/v58.0/sobjects/ListEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ListEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ListEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Change Event","labelPlural":"List Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ListEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ListEmailChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XF","label":"List + Email Individual Recipient","labelPlural":"List Email Individual Recipients","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailIndividualRecipient","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/describe","sobject":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XD","label":"List + Email Recipient Source","labelPlural":"List Email Recipient Sources","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailRecipientSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailRecipientSource/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailRecipientSource/describe","sobject":"/services/data/v58.0/sobjects/ListEmailRecipientSource"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ListEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Share","labelPlural":"List Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ListEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00B","label":"List + View","labelPlural":"List Views","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListView/{ID}","describe":"/services/data/v58.0/sobjects/ListView/describe","sobject":"/services/data/v58.0/sobjects/ListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Dd","label":"List + View Chart","labelPlural":"List View Charts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChart","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChart/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChart/describe","sobject":"/services/data/v58.0/sobjects/ListViewChart"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0De","label":"List + View Chart Instance","labelPlural":"List View Chart Instances","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChartInstance","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChartInstance/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChartInstance/describe","sobject":"/services/data/v58.0/sobjects/ListViewChartInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0X8","label":"List + View Event","labelPlural":"List View Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEvent/{ID}","describe":"/services/data/v58.0/sobjects/ListViewEvent/describe","sobject":"/services/data/v58.0/sobjects/ListViewEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XG","label":"List + View Event Stream","labelPlural":"List View Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListViewEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ListViewEventStream/describe","sobject":"/services/data/v58.0/sobjects/ListViewEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"131","label":"Location","labelPlural":"Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Location","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Location/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Location/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Location/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Location/describe","quickActions":"/services/data/v58.0/sobjects/Location/quickActions","layouts":"/services/data/v58.0/sobjects/Location/describe/layouts","sobject":"/services/data/v58.0/sobjects/Location"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Change Event","labelPlural":"Location Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Feed","labelPlural":"Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gh","label":"Location + Group","labelPlural":"Location Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroup/describe","quickActions":"/services/data/v58.0/sobjects/LocationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/LocationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gx","label":"Location + Group Assignment","labelPlural":"Location Group Assignments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroupAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroupAssignment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe","layouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroupAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Feed","labelPlural":"Location Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group History","labelPlural":"Location Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LocationGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Share","labelPlural":"Location Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupShare/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + History","labelPlural":"Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Location","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Share","labelPlural":"Location Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationShare/describe","sobject":"/services/data/v58.0/sobjects/LocationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VX","label":"LoginAs + Event","labelPlural":"LoginAs Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginAsEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VY","label":"LoginAs + Event Stream","labelPlural":"LoginAs Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginAsEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginAsEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1HB","label":"Login + Event","labelPlural":"Login Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ll","label":"Login + Event Stream","labelPlural":"Login Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04F","label":"Login + Geo Data","labelPlural":"Login Geo Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginGeo","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginGeo/{ID}","describe":"/services/data/v58.0/sobjects/LoginGeo/describe","sobject":"/services/data/v58.0/sobjects/LoginGeo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ya","label":"Login + History","labelPlural":"Login History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginHistory/{ID}","describe":"/services/data/v58.0/sobjects/LoginHistory/describe","sobject":"/services/data/v58.0/sobjects/LoginHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"710","label":"Login + IP","labelPlural":"Login IP","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginIp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginIp/{ID}","describe":"/services/data/v58.0/sobjects/LoginIp/describe","sobject":"/services/data/v58.0/sobjects/LoginIp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06M","label":"Logout + Event","labelPlural":"Logout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEvent/{ID}","describe":"/services/data/v58.0/sobjects/LogoutEvent/describe","sobject":"/services/data/v58.0/sobjects/LogoutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PH","label":"Logout + Event Stream","labelPlural":"Logout Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LogoutEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LogoutEventStream/describe","sobject":"/services/data/v58.0/sobjects/LogoutEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lookups + from Activity","labelPlural":"Lookups from Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LookedUpFromActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LookedUpFromActivity/{ID}","describe":"/services/data/v58.0/sobjects/LookedUpFromActivity/describe","sobject":"/services/data/v58.0/sobjects/LookedUpFromActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"873","label":"ML + Model","labelPlural":"ML Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModel/describe","sobject":"/services/data/v58.0/sobjects/MLModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"876","label":"ML + Model Factor","labelPlural":"ML Model Factors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactor/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"877","label":"ML + Model Factor Component","labelPlural":"ML Model Factor Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactorComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactorComponent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactorComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"874","label":"ML + Model Metric","labelPlural":"ML Model Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelMetric/{ID}","describe":"/services/data/v58.0/sobjects/MLModelMetric/describe","sobject":"/services/data/v58.0/sobjects/MLModelMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6gt","label":"ML + Prediction Definition","labelPlural":"ML Prediction Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLPredictionDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLPredictionDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLPredictionDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLPredictionDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7gh","label":"ML + Recommendation Definition","labelPlural":"ML Recommendation Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLRecommendationDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLRecommendationDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLRecommendationDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLRecommendationDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JZ","label":"Macro","labelPlural":"Macros","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Macro","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Macro/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Macro/{ID}","describe":"/services/data/v58.0/sobjects/Macro/describe","layouts":"/services/data/v58.0/sobjects/Macro/describe/layouts","sobject":"/services/data/v58.0/sobjects/Macro"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Change Event","labelPlural":"Macro Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + History","labelPlural":"Macro History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroHistory/{ID}","describe":"/services/data/v58.0/sobjects/MacroHistory/describe","sobject":"/services/data/v58.0/sobjects/MacroHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ji","label":"Macro + Instruction","labelPlural":"Macro Instructions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstruction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstruction/{ID}","describe":"/services/data/v58.0/sobjects/MacroInstruction/describe","sobject":"/services/data/v58.0/sobjects/MacroInstruction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MacroInstruction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Instruction Change Event","labelPlural":"Macro Instruction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstructionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Macro","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Share","labelPlural":"Macro Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroShare/describe","sobject":"/services/data/v58.0/sobjects/MacroShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5ML","label":"Macro + Usage","labelPlural":"Macro Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MacroUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MacroUsage/describe","sobject":"/services/data/v58.0/sobjects/MacroUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MacroUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Usage Share","labelPlural":"Macro Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroUsageShare/describe","sobject":"/services/data/v58.0/sobjects/MacroUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01H","label":"Mail + Merge Template","labelPlural":"Mail Merge Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MailmergeTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MailmergeTemplate/{ID}","describe":"/services/data/v58.0/sobjects/MailmergeTemplate/describe","sobject":"/services/data/v58.0/sobjects/MailmergeTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MA","label":"Maintenance + Asset","labelPlural":"Maintenance Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceAsset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAsset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceAsset/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceAsset/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceAsset"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Change Event","labelPlural":"Maintenance Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Feed","labelPlural":"Maintenance Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset History","labelPlural":"Maintenance Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MP","label":"Maintenance + Plan","labelPlural":"Maintenance Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenancePlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenancePlan/describe","quickActions":"/services/data/v58.0/sobjects/MaintenancePlan/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenancePlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Change Event","labelPlural":"Maintenance Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Feed","labelPlural":"Maintenance Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan History","labelPlural":"Maintenance Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenancePlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Share","labelPlural":"Maintenance Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7fc","label":"Maintenance + Work Rule","labelPlural":"Maintenance Work Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceWorkRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceWorkRule/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Change Event","labelPlural":"Maintenance Work Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Feed","labelPlural":"Maintenance Work Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule History","labelPlural":"Maintenance Work Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenanceWorkRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Share","labelPlural":"Maintenance Work Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"20Y","label":"Managed + Content","labelPlural":"Managed Contents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContent/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContent/describe","layouts":"/services/data/v58.0/sobjects/ManagedContent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ap","label":"Managed + Content Channel","labelPlural":"Managed Content Channels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentChannel/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentChannel/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zu","label":"Managed + Content Space","labelPlural":"Managed Content Spaces","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ManagedContentSpace","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentSpace/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentSpace/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentSpace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Ps","label":"Managed + Content Variant","labelPlural":"Managed Content Variants","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariant","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariant/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentVariant/describe","layouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContentVariant"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ManagedContentVariant","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Managed + Content Variant Change Event","labelPlural":"Managed Content Variant Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching + Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching + Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My + Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named + Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note + and Attachment","labelPlural":"Notes and Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"NoteAndAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NoteAndAttachment/{ID}","describe":"/services/data/v58.0/sobjects/NoteAndAttachment/describe","sobject":"/services/data/v58.0/sobjects/NoteAndAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ud","label":"OAuth + Custom Scope","labelPlural":"OAuth Custom Scopes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScope","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScope/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScope/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScope"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ue","label":"OAuth + Custom Scope App ","labelPlural":"OAuth Custom Scope Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScopeApp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScopeApp/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScopeApp/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScopeApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CQ","label":"Oauth + Token","labelPlural":"Oauth Tokens","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthToken","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthToken/{ID}","describe":"/services/data/v58.0/sobjects/OauthToken/describe","sobject":"/services/data/v58.0/sobjects/OauthToken"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"110","label":"Object + Permissions","labelPlural":"Object Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ObjectPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ObjectPermissions/{ID}","describe":"/services/data/v58.0/sobjects/ObjectPermissions/describe","sobject":"/services/data/v58.0/sobjects/ObjectPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UG","label":"Onboarding + Metrics","labelPlural":"Onboarding Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OnboardingMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OnboardingMetrics/{ID}","describe":"/services/data/v58.0/sobjects/OnboardingMetrics/describe","sobject":"/services/data/v58.0/sobjects/OnboardingMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Open + Activity","labelPlural":"Open Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpenActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpenActivity/{ID}","describe":"/services/data/v58.0/sobjects/OpenActivity/describe","sobject":"/services/data/v58.0/sobjects/OpenActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OH","label":"Operating + Hours","labelPlural":"Operating Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHours/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHours/describe","quickActions":"/services/data/v58.0/sobjects/OperatingHours/quickActions","layouts":"/services/data/v58.0/sobjects/OperatingHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHours"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Change Event","labelPlural":"Operating Hours Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Feed","labelPlural":"Operating Hours Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jG","label":"Operating + Hours Holiday","labelPlural":"Operating Hours Holidays","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHoursHoliday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHoliday/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe","layouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHoursHoliday"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHoursHoliday","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Holiday Feed","labelPlural":"Operating Hours Holiday Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursHolidayFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"006","label":"Opportunity","labelPlural":"Opportunities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Opportunity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Opportunity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Opportunity/listviews","describe":"/services/data/v58.0/sobjects/Opportunity/describe","quickActions":"/services/data/v58.0/sobjects/Opportunity/quickActions","layouts":"/services/data/v58.0/sobjects/Opportunity/describe/layouts","sobject":"/services/data/v58.0/sobjects/Opportunity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Change Event","labelPlural":"Opportunity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00J","label":"Opportunity: + Competitor","labelPlural":"Opportunity: Competitor","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityCompetitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityCompetitor/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityCompetitor/describe","sobject":"/services/data/v58.0/sobjects/OpportunityCompetitor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00K","label":"Opportunity + Contact Role","labelPlural":"Opportunity Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRole/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityContactRole/describe","quickActions":"/services/data/v58.0/sobjects/OpportunityContactRole/quickActions","layouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OpportunityContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Contact Role Change Event","labelPlural":"Opportunity Contact Role Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Feed","labelPlural":"Opportunity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFeed/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFeed/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Field History","labelPlural":"Opportunity Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFieldHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"008","label":"Opportunity + History","labelPlural":"Opportunity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00k","label":"Opportunity + Product","labelPlural":"Opportunity Product","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OpportunityLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityLineItem/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityLineItem/describe","layouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityLineItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Opportunity + Partner","labelPlural":"Opportunity Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityPartner/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityPartner/describe","layouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Opportunity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00t","label":"Opportunity + Share","labelPlural":"Opportunity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityShare/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityShare/describe","sobject":"/services/data/v58.0/sobjects/OpportunityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Opportunity + Stage","labelPlural":"Opportunity Stage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityStage","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityStage/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityStage/describe","sobject":"/services/data/v58.0/sobjects/OpportunityStage"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"801","label":"Order","labelPlural":"Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Order","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order/describe","quickActions":"/services/data/v58.0/sobjects/Order/quickActions","layouts":"/services/data/v58.0/sobjects/Order/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Change Event","labelPlural":"Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Feed","labelPlural":"Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + History","labelPlural":"Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"802","label":"Order + Product","labelPlural":"Order Products","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OrderItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OrderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OrderItem/{ID}","describe":"/services/data/v58.0/sobjects/OrderItem/describe","layouts":"/services/data/v58.0/sobjects/OrderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OrderItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Change Event","labelPlural":"Order Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Feed","labelPlural":"Order Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product History","labelPlural":"Order Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fy","label":"Order + Share","labelPlural":"Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderShare/{ID}","describe":"/services/data/v58.0/sobjects/OrderShare/describe","sobject":"/services/data/v58.0/sobjects/OrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Status Value","labelPlural":"Order Status Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/OrderStatus/describe","sobject":"/services/data/v58.0/sobjects/OrderStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Stripe Coupon","labelPlural":"Change Event: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Stripe Coupon","labelPlural":"Share: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1N","label":"Order + Stripe Coupon","labelPlural":"Order Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D3","label":"Organization + Email Address Security","labelPlural":"Organization Email Address Security","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgEmailAddressSecurity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/{ID}","describe":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/describe","sobject":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OL","label":"Org + Lifecycle Notification","labelPlural":"Org Lifecycle Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgLifecycleNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgLifecycleNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrgLifecycleNotification/eventSchema","describe":"/services/data/v58.0/sobjects/OrgLifecycleNotification/describe","sobject":"/services/data/v58.0/sobjects/OrgLifecycleNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3v1","label":"Org + Metric","labelPlural":"Org Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetric/{ID}","describe":"/services/data/v58.0/sobjects/OrgMetric/describe","sobject":"/services/data/v58.0/sobjects/OrgMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9aM","label":"Org + Metric Scan Result","labelPlural":"Org Metric Scan Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanResult/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6mX","label":"Org + Metric Scan Summary","labelPlural":"Org Metric Scan Summaries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanSummary","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanSummary/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanSummary"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D2","label":"Organization-wide + From Email Address","labelPlural":"Organization-wide From Email Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgWideEmailAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgWideEmailAddress/{ID}","describe":"/services/data/v58.0/sobjects/OrgWideEmailAddress/describe","sobject":"/services/data/v58.0/sobjects/OrgWideEmailAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00D","label":"Organization","labelPlural":"Organizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization/{ID}","describe":"/services/data/v58.0/sobjects/Organization/describe","sobject":"/services/data/v58.0/sobjects/Organization"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Organization_Type__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Organization Type","labelPlural":"Change Event: Organization Type","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1O","label":"Organization + Type","labelPlural":"Organization Type","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__c/{ID}","describe":"/services/data/v58.0/sobjects/Organization_Type__c/describe","quickActions":"/services/data/v58.0/sobjects/Organization_Type__c/quickActions","layouts":"/services/data/v58.0/sobjects/Organization_Type__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Organization_Type__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q1","label":"Outgoing + Email","labelPlural":"Outgoing Emails","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmail/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmail/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q3","label":"Outgoing + Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change + Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party + Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Feed","labelPlural":"Party Consent Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent History","labelPlural":"Party Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PartyConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Share","labelPlural":"Party Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentShare/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0aQ","label":"Payment","labelPlural":"Payments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Payment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Payment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Payment/{ID}","describe":"/services/data/v58.0/sobjects/Payment/describe","quickActions":"/services/data/v58.0/sobjects/Payment/quickActions","layouts":"/services/data/v58.0/sobjects/Payment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Payment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9tv","label":"Payment + Authorization Adjustment","labelPlural":"Payment Authorization Adjustments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthAdjustment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthAdjustment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xc","label":"Payment + Authorization","labelPlural":"Payment Authorizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthorization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthorization/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthorization/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthorization/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthorization"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Payment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PaymentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PaymentFeed/describe","sobject":"/services/data/v58.0/sobjects/PaymentFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0b0","label":"Payment + Gateway","labelPlural":"Payment Gateways","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGateway","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGateway/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGateway/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGateway/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGateway"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xt","label":"Payment + Gateway Log","labelPlural":"Payment Gateway Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayLog/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGatewayLog/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cJ","label":"Payment + Gateway Provider","labelPlural":"Payment Gateway Providers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayProvider/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe","layouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9zx","label":"Payment + Group","labelPlural":"Payment Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGroup/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGroup/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGroup/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1PL","label":"Payment + Line Invoice","labelPlural":"Payment Line Invoices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentLineInvoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentLineInvoice/{ID}","describe":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe","quickActions":"/services/data/v58.0/sobjects/PaymentLineInvoice/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentLineInvoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":true,"isSubtype":false,"keyPrefix":"0aa","label":"Payment + Method","labelPlural":"Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentMethod","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/PaymentMethod/describe","layouts":"/services/data/v58.0/sobjects/PaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"026","label":"Period","labelPlural":"Period","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Period","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Period/{ID}","describe":"/services/data/v58.0/sobjects/Period/describe","sobject":"/services/data/v58.0/sobjects/Period"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PS","label":"Permission + Set","labelPlural":"Permission Sets","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSet/describe","sobject":"/services/data/v58.0/sobjects/PermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pa","label":"Permission + Set Assignment","labelPlural":"Permission Set Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetAssignment/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetAssignment/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f3","label":"Permission + Set Event","labelPlural":"Permission Set Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PermissionSetEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PermissionSetEvent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f9","label":"Permission + Set Event Store ","labelPlural":"Permission Set Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEventStore/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetEventStore/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PG","label":"Permission + Set Group","labelPlural":"Permission Set Groups","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSetGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroup/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroup/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PM","label":"Permission + Set Group Component","labelPlural":"Permission Set Group Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetGroupComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroupComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PL","label":"Permission + Set License","labelPlural":"Permission Set Licenses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicense/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicense/describe","layouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/layouts","sobject":"/services/data/v58.0/sobjects/PermissionSetLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2LA","label":"Permission + Set License Assignment","labelPlural":"Permission Set License Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicenseAssign","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01P","label":"Permission + Set Tab Setting","labelPlural":"Permission Set Tab Setting","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetTabSetting","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetTabSetting/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetTabSetting/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetTabSetting"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pv","label":"Picklist + Value Info","labelPlural":"Picklist Value Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PicklistValueInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PicklistValueInfo/{ID}","describe":"/services/data/v58.0/sobjects/PicklistValueInfo/describe","sobject":"/services/data/v58.0/sobjects/PicklistValueInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JV","label":"Platform + Action","labelPlural":"Platform Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformAction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformAction/{ID}","describe":"/services/data/v58.0/sobjects/PlatformAction/describe","sobject":"/services/data/v58.0/sobjects/PlatformAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Er","label":"Platform + Cache Partition","labelPlural":"Platform Cache Partitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartition/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartition/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ev","label":"Platform + Cache Partition Type","labelPlural":"Platform Cache Partition Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartitionType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartitionType/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartitionType/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartitionType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Kk","label":"Platform + Event Usage Metric","labelPlural":"Platform Event Usage Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformEventUsageMetric","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/{ID}","describe":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/describe","sobject":"/services/data/v58.0/sobjects/PlatformEventUsageMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0V2","label":"Platform + Status Alert Event","labelPlural":"Platform Status Alert Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformStatusAlertEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/describe","sobject":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01s","label":"Price + Book","labelPlural":"Price Books","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Pricebook2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Pricebook2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Pricebook2/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2/describe","layouts":"/services/data/v58.0/sobjects/Pricebook2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Pricebook2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Change Event","labelPlural":"Price Book Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book History","labelPlural":"Price Book History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2History/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2History/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01u","label":"Price + Book Entry","labelPlural":"Price Book Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PricebookEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PricebookEntry/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntry/describe","layouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/PricebookEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry Change Event","labelPlural":"Price Book Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry History","labelPlural":"Price Book Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04a","label":"Process + Definition","labelPlural":"Process Definition","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ProcessDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ProcessDefinition/describe","sobject":"/services/data/v58.0/sobjects/ProcessDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Pe","label":"Process + Exception","labelPlural":"Process Exceptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProcessException","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProcessException/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProcessException/describe","quickActions":"/services/data/v58.0/sobjects/ProcessException/quickActions","layouts":"/services/data/v58.0/sobjects/ProcessException/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProcessException"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4v2","label":"Process + Exception Event","labelPlural":"Process Exception Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProcessExceptionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProcessExceptionEvent/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProcessException","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Exception Share","labelPlural":"Process Exception Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionShare/{ID}","describe":"/services/data/v58.0/sobjects/ProcessExceptionShare/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"11Q","label":"Process + Flow Migration","labelPlural":"Process Flow Migration Objects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessFlowMigration","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessFlowMigration/{ID}","describe":"/services/data/v58.0/sobjects/ProcessFlowMigration/describe","sobject":"/services/data/v58.0/sobjects/ProcessFlowMigration"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04g","label":"Process + Instance","labelPlural":"Process Instance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstance","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstance/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstance/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Instance History","labelPlural":"Process Instance History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceHistory/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OO","label":"Process + Instance Node","labelPlural":"Process Instance Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04h","label":"Process + Instance Step","labelPlural":"Process Instance Step","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceStep","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceStep/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceStep/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04i","label":"Approval + Request","labelPlural":"Approval Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceWorkitem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04b","label":"Process + Node","labelPlural":"Process Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessNode","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01t","label":"Product","labelPlural":"Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Product2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Product2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Product2/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Product2/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Product2/describe","quickActions":"/services/data/v58.0/sobjects/Product2/quickActions","layouts":"/services/data/v58.0/sobjects/Product2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Product2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Change Event","labelPlural":"Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Product2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Product2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Product2ChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Feed","labelPlural":"Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2Feed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2Feed/{ID}","describe":"/services/data/v58.0/sobjects/Product2Feed/describe","sobject":"/services/data/v58.0/sobjects/Product2Feed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + History","labelPlural":"Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2History/{ID}","describe":"/services/data/v58.0/sobjects/Product2History/describe","sobject":"/services/data/v58.0/sobjects/Product2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gv","label":"Product + Consumed","labelPlural":"Products Consumed","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductConsumed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumed/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumed/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumed/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumed"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Change Event","labelPlural":"Product Consumed Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Feed","labelPlural":"Product Consumed Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed History","labelPlural":"Product Consumed History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pY","label":"Product + Consumed State","labelPlural":"Product Consumed States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumedState/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumedState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumedState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumedState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed State History","labelPlural":"Product Consumed State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mq","label":"Product + Consumption Schedule","labelPlural":"Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe","layouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumptionSchedule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E9","label":"Product + Entitlement Template","labelPlural":"Product Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductEntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/ProductEntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Co","label":"Product + Item","labelPlural":"Product Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Change Event","labelPlural":"Product Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Feed","labelPlural":"Product Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item History","labelPlural":"Product Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Share","labelPlural":"Product Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemShare/describe","sobject":"/services/data/v58.0/sobjects/ProductItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TR","label":"Product + Item Transaction","labelPlural":"Product Item Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItemTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItemTransaction/describe","quickActions":"/services/data/v58.0/sobjects/ProductItemTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItemTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction Feed","labelPlural":"Product Item Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction History","labelPlural":"Product Item Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TS","label":"Product + Request","labelPlural":"Product Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequest/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequest/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequest"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Change Event","labelPlural":"Product Request Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Feed","labelPlural":"Product Request Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request History ","labelPlural":"Product Request History ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tw","label":"Product + Request Line Item","labelPlural":"Product Request Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequestLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequestLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Change Event","labelPlural":"Product Request Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Feed","labelPlural":"Product Request Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item History ","labelPlural":"Product Request Line Item History + ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Share","labelPlural":"Product Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gn","label":"Product + Required","labelPlural":"Products Required","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequired","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequired/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequired/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequired/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequired/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequired"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Change Event","labelPlural":"Product Required Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Feed","labelPlural":"Product Required Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required History","labelPlural":"Product Required History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iR","label":"Product + Service Campaign","labelPlural":"Product Service Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaign/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaign"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Feed","labelPlural":"Product Service Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign History","labelPlural":"Product Service Campaign History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"23N","label":"Product + Service Campaign Item","labelPlural":"Product Service Campaign Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaignItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Feed","labelPlural":"Product Service Campaign Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item History","labelPlural":"Product Service Campaign Item + History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Status","labelPlural":"Product Service Campaign Item + Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductServiceCampaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Share","labelPlural":"Product Service Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Status","labelPlural":"Product Service Campaign Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lu","label":"Product + Transfer","labelPlural":"Product Transfers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductTransfer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransfer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransfer/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransfer/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransfer"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Change Event","labelPlural":"Product Transfer Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Feed","labelPlural":"Product Transfer Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer History","labelPlural":"Product Transfer History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductTransfer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Share","labelPlural":"Product Transfer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferShare/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0nw","label":"Product + Transfer State","labelPlural":"Product Transfer States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductTransferState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransferState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransferState/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransferState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransferState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransferState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer State History","labelPlural":"Product Transfer State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Uj","label":"Product + Warranty Term","labelPlural":"Product Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductWarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTerm/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/ProductWarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTerm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term Feed","labelPlural":"Product Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term History","labelPlural":"Product Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00e","label":"Profile","labelPlural":"Profile","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Profile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Profile/{ID}","describe":"/services/data/v58.0/sobjects/Profile/describe","sobject":"/services/data/v58.0/sobjects/Profile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sk","label":"Skill","labelPlural":"Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProfileSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkill/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkill/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkill"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SE","label":"Endorsement","labelPlural":"Endorsements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsement"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + Feed","labelPlural":"Endorsement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + History","labelPlural":"Endorsement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Feed","labelPlural":"Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + History","labelPlural":"Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProfileSkill","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Share","labelPlural":"Skill Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillShare/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillShare/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SM","label":"Skill + User","labelPlural":"Skill Users","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillUser/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillUser/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillUser"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User Feed","labelPlural":"Skill User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User History","labelPlural":"Skill User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bs","label":"Prompt","labelPlural":"Prompts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Prompt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Prompt/{ID}","describe":"/services/data/v58.0/sobjects/Prompt/describe","sobject":"/services/data/v58.0/sobjects/Prompt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bu","label":"Prompt + Action","labelPlural":"Prompt Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptAction/describe","sobject":"/services/data/v58.0/sobjects/PromptAction"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptAction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Action Share","labelPlural":"Prompt Action Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptActionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptActionShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptActionShare/describe","sobject":"/services/data/v58.0/sobjects/PromptActionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4Dr","label":"Prompt + Error","labelPlural":"Prompt Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptError","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptError/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptError/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptError/describe","sobject":"/services/data/v58.0/sobjects/PromptError"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptError","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Error Share","labelPlural":"Prompt Error Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptErrorShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptErrorShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptErrorShare/describe","sobject":"/services/data/v58.0/sobjects/PromptErrorShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bt","label":"Prompt + Version","labelPlural":"Prompt Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptVersion/{ID}","describe":"/services/data/v58.0/sobjects/PromptVersion/describe","sobject":"/services/data/v58.0/sobjects/PromptVersion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pb","label":"Publisher","labelPlural":"Publishers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Publisher","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Publisher/{ID}","describe":"/services/data/v58.0/sobjects/Publisher/describe","sobject":"/services/data/v58.0/sobjects/Publisher"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IF","label":"Push + Topic","labelPlural":"Push Topics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PushTopic","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PushTopic/{ID}","describe":"/services/data/v58.0/sobjects/PushTopic/describe","sobject":"/services/data/v58.0/sobjects/PushTopic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03g","label":"Queue + sObject","labelPlural":"Queue sObjects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QueueSobject","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QueueSobject/{ID}","describe":"/services/data/v58.0/sobjects/QueueSobject/describe","sobject":"/services/data/v58.0/sobjects/QueueSobject"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"574","label":"Quick + Text","labelPlural":"Quick Text","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"QuickText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/QuickText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/QuickText/{ID}","describe":"/services/data/v58.0/sobjects/QuickText/describe","layouts":"/services/data/v58.0/sobjects/QuickText/describe/layouts","sobject":"/services/data/v58.0/sobjects/QuickText"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Change Event","labelPlural":"Quick Text Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/QuickTextChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/QuickTextChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/QuickTextChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text History","labelPlural":"Quick Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextHistory/describe","sobject":"/services/data/v58.0/sobjects/QuickTextHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickText","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Share","labelPlural":"Quick Text Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5QL","label":"Quick + Text Usage","labelPlural":"Quick Text Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/QuickTextUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/QuickTextUsage/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickTextUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Usage Share","labelPlural":"Quick Text Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextUsageShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QR","label":"Quote + Template Rich Text Data","labelPlural":"Quote Template Rich Text Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuoteTemplateRichTextData","queryable":false,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/{ID}","describe":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/describe","sobject":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Line_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Stripe Coupon Association","labelPlural":"Change Event: + Quote Line Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1P","label":"Quote + Line Stripe Coupon Association","labelPlural":"Quote Line Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon Association","labelPlural":"Change Event: Quote + Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1Q","label":"Quote + Stripe Coupon Association","labelPlural":"Quote Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon","labelPlural":"Change Event: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Quote_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Stripe Coupon","labelPlural":"Share: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1R","label":"Quote + Stripe Coupon","labelPlural":"Quote Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recently + Viewed","labelPlural":"Recently Viewed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecentlyViewed","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecentlyViewed/{ID}","describe":"/services/data/v58.0/sobjects/RecentlyViewed/describe","sobject":"/services/data/v58.0/sobjects/RecentlyViewed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pr","label":"Recommendation","labelPlural":"Recommendations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Recommendation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Recommendation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Recommendation/{ID}","describe":"/services/data/v58.0/sobjects/Recommendation/describe","layouts":"/services/data/v58.0/sobjects/Recommendation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Recommendation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Recommendation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recommendation + Change Event","labelPlural":"Recommendation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecommendationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecommendationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecommendationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rr","label":"Recommendation + Response","labelPlural":"Recommendation Responses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationResponse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationResponse/{ID}","describe":"/services/data/v58.0/sobjects/RecommendationResponse/describe","sobject":"/services/data/v58.0/sobjects/RecommendationResponse"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rw","label":"RecordAction","labelPlural":"RecordActions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordAction/{ID}","describe":"/services/data/v58.0/sobjects/RecordAction/describe","sobject":"/services/data/v58.0/sobjects/RecordAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ub","label":"RecordActionHistory","labelPlural":"RecordActionHistories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordActionHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordActionHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordActionHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordActionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"012","label":"Record + Type","labelPlural":"Record Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"RecordType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordType/{ID}","describe":"/services/data/v58.0/sobjects/RecordType/describe","sobject":"/services/data/v58.0/sobjects/RecordType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hr","label":"Recordset + Filter Criteria","labelPlural":"Recordset Filter Criteria","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteria"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Change Event","labelPlural":"Recordset Filter Criteria Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria History","labelPlural":"Recordset Filter Criteria History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hK","label":"Recordset + Filter Criteria Rule","labelPlural":"Recordset Filter Criteria Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteriaRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteriaRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Rule Change Event","labelPlural":"Recordset Filter Criteria + Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"RecordsetFilterCriteria","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Share","labelPlural":"Recordset Filter Criteria Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0yH","label":"Recordset + Filter Criteria Monitor","labelPlural":"Recordset Filter Criteria Monitors","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFltrCritMonitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Change Event","labelPlural":"Recordset Filter Criteria + Monitor Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Feed","labelPlural":"Recordset Filter Criteria Monitor + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor History","labelPlural":"Recordset Filter Criteria + Monitor History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9V6","label":"Allow + URL for Redirects","labelPlural":"Allow URLs for Redirects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RedirectWhitelistUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/{ID}","describe":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/describe","sobject":"/services/data/v58.0/sobjects/RedirectWhitelistUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cb","label":"Refund","labelPlural":"Refunds","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Refund","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Refund/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Refund/{ID}","describe":"/services/data/v58.0/sobjects/Refund/describe","quickActions":"/services/data/v58.0/sobjects/Refund/quickActions","layouts":"/services/data/v58.0/sobjects/Refund/describe/layouts","sobject":"/services/data/v58.0/sobjects/Refund"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dR","label":"Refund + Line Payment","labelPlural":"Refund Line Payments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"RefundLinePayment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RefundLinePayment/{ID}","describe":"/services/data/v58.0/sobjects/RefundLinePayment/describe","quickActions":"/services/data/v58.0/sobjects/RefundLinePayment/quickActions","layouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/layouts","sobject":"/services/data/v58.0/sobjects/RefundLinePayment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rc","label":"Related + List Column Definition","labelPlural":"Related List Column Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListColumnDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListColumnDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rl","label":"Related + List Definition","labelPlural":"Related List Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jv","label":"Relationship + Domain","labelPlural":"Relationship Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipDomain","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipDomain/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipDomain/describe","sobject":"/services/data/v58.0/sobjects/RelationshipDomain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ju","label":"Relationship","labelPlural":"Relationships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipInfo/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipInfo/describe","sobject":"/services/data/v58.0/sobjects/RelationshipInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VA","label":"Remote + Key Callout Event","labelPlural":"Remote Key Callout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RemoteKeyCalloutEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/describe","sobject":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00O","label":"Report","labelPlural":"Reports","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Report","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Report/{ID}","listviews":"/services/data/v58.0/sobjects/Report/listviews","describe":"/services/data/v58.0/sobjects/Report/describe","sobject":"/services/data/v58.0/sobjects/Report"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yv","label":"Report + Anomaly Event","labelPlural":"Report Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReportAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Z7","label":"Report + Anomaly Event Store","labelPlural":"Report Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReportAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReportAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Anomaly Event Store Feed","labelPlural":"Report Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qu","label":"Report + Event","labelPlural":"Report Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEvent/{ID}","describe":"/services/data/v58.0/sobjects/ReportEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ol","label":"Report + Event Stream","labelPlural":"Report Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ReportEventStream/describe","sobject":"/services/data/v58.0/sobjects/ReportEventStream"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Report","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Feed","labelPlural":"Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hw","label":"Resource + Absence","labelPlural":"Resource Absences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourceAbsence","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsence/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourceAbsence/describe","quickActions":"/services/data/v58.0/sobjects/ResourceAbsence/quickActions","layouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourceAbsence"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Change Event","labelPlural":"Resource Absence Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Feed","labelPlural":"Resource Absence Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence History","labelPlural":"Resource Absence History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kz","label":"Resource + Preference","labelPlural":"Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourcePreference/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourcePreference/describe","layouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourcePreference"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Change Event","labelPlural":"Resource Preference Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Feed","labelPlural":"Resource Preference Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference History","labelPlural":"Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2oN","label":"Return + Order","labelPlural":"Return Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrder/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrder/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Change Event","labelPlural":"Return Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Feed","labelPlural":"Return Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order History","labelPlural":"Return Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sn","label":"Return + Order Line Item","labelPlural":"Return Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Change Event","labelPlural":"Return Order Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Feed","labelPlural":"Return Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item History","labelPlural":"Return Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ReturnOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Share","labelPlural":"Return Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderShare/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Set","labelPlural":"Change Event: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__AttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Attribute Set","labelPlural":"Share: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a00","label":"Attribute + Set","labelPlural":"Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__AttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Value","labelPlural":"Change Event: Attribute Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a01","label":"Attribute + Value","labelPlural":"Attribute Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__BlockPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Block Price","labelPlural":"Change Event: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__BlockPrice__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Block Price","labelPlural":"Share: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a02","label":"Block + Price","labelPlural":"Block Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ColumnMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Column Metadata","labelPlural":"Change Event: Column Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ColumnMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a04","label":"Column + Metadata","labelPlural":"Columns Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ColumnMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Attribute","labelPlural":"Change Event: Configuration + Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Configuration Attribute","labelPlural":"Share: Configuration Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a05","label":"Configuration + Attribute","labelPlural":"Configuration Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ConfigurationAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Rule","labelPlural":"Change Event: Configuration Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a06","label":"Configuration + Rule","labelPlural":"Configuration Rules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Contracted Price","labelPlural":"Change Event: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Contracted Price","labelPlural":"History: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a07","label":"Contracted + Price","labelPlural":"Contracted Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Cost__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Cost","labelPlural":"Change Event: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Cost__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Cost","labelPlural":"Share: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a08","label":"Cost","labelPlural":"Costs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Cost__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomActionCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action Condition","labelPlural":"Change Event: Custom Action + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a09","label":"Custom + Action Condition","labelPlural":"Custom Action Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action","labelPlural":"Change Event: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomAction__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Action","labelPlural":"Share: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0A","label":"Custom + Action","labelPlural":"Custom Actions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomScript__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Script","labelPlural":"Change Event: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomScript__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Script","labelPlural":"Share: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0C","label":"Custom + Script","labelPlural":"Custom Scripts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomScript__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Dimension__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Dimension","labelPlural":"Change Event: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Dimension__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Dimension","labelPlural":"Share: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0D","label":"Price + Dimension","labelPlural":"Price Dimensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountCategory__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Category","labelPlural":"Change Event: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountCategory__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Category","labelPlural":"Share: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0E","label":"Discount + Category","labelPlural":"Discount Categories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountCategory__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Schedule","labelPlural":"Change Event: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Schedule","labelPlural":"History: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Schedule","labelPlural":"Share: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0G","label":"Discount + Schedule","labelPlural":"Discount Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Tier","labelPlural":"Change Event: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Tier","labelPlural":"History: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0H","label":"Discount + Tier","labelPlural":"Discount Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ErrorCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Condition","labelPlural":"Change Event: Error Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0I","label":"Error + Condition","labelPlural":"Error Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteProduct__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Product","labelPlural":"Change Event: Favorite Product","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0J","label":"Favorite + Product","labelPlural":"Favorite Product","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteShare__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Share","labelPlural":"Change Event: Favorite Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0K","label":"Favorite + Share","labelPlural":"Favorite Shares","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Favorite__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite","labelPlural":"Change Event: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Favorite__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Favorite","labelPlural":"Share: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0L","label":"Favorite","labelPlural":"Favorites","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Favorite__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Field Metadata","labelPlural":"Change Event: Field Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0M","label":"Field + Metadata","labelPlural":"Field Metadata","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: FieldSet Metadata","labelPlural":"Change Event: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + FieldSet Metadata","labelPlural":"Share: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0N","label":"FieldSet + Metadata","labelPlural":"FieldSets Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__FieldSetMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Column","labelPlural":"Change Event: Import Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Q","label":"Import + Column","labelPlural":"Import Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportFormat__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Format","labelPlural":"Change Event: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ImportFormat__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Import Format","labelPlural":"Share: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0R","label":"Import + Format","labelPlural":"Import Formats","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ImportFormat__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Install Processor Log","labelPlural":"Change Event: Install Processor + Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Install Processor Log","labelPlural":"Share: Install Processor Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0S","label":"Install + Processor Log","labelPlural":"Install Processor Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__InstallProcessorLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LineColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Line Column","labelPlural":"Change Event: Line Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0T","label":"Line + Column","labelPlural":"Line Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Localization__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Localization","labelPlural":"Change Event: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Localization__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Localization","labelPlural":"Share: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0U","label":"Localization","labelPlural":"Localizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Localization__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Localization__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupData__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Data","labelPlural":"Change Event: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupData__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Data","labelPlural":"Share: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0V","label":"Lookup + Data","labelPlural":"Lookup Data","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupQuery__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Query","labelPlural":"Change Event: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupQuery__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Query","labelPlural":"Share: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0W","label":"Lookup + Query","labelPlural":"Lookup Queries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OptionConstraint__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Option Constraint","labelPlural":"Change Event: Option Constraint","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0X","label":"Option + Constraint","labelPlural":"Option Constraints","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Rate","labelPlural":"Change Event: Order + Product Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Y","label":"Order + Product Consumption Rate","labelPlural":"Order Product Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Schedule","labelPlural":"Change Event: Order + Product Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Product Consumption Schedule","labelPlural":"Share: Order Product Consumption + Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Z","label":"Order + Product Consumption Schedule","labelPlural":"Order Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Action","labelPlural":"Change Event: Price Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0a","label":"Price + Action","labelPlural":"Price Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Condition","labelPlural":"Change Event: Price Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0b","label":"Price + Condition","labelPlural":"Price Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Rule","labelPlural":"Change Event: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Rule","labelPlural":"Share: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0c","label":"Price + Rule","labelPlural":"Price Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PriceRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Schedule","labelPlural":"Change Event: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Schedule","labelPlural":"History: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Schedule","labelPlural":"Share: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0d","label":"Price + Schedule","labelPlural":"Price Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Tier","labelPlural":"Change Event: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Tier","labelPlural":"History: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0e","label":"Price + Tier","labelPlural":"Price Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance Tier","labelPlural":"Change Event: Pricing Guidance + Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance Tier","labelPlural":"History: Pricing Guidance Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0f","label":"Pricing + Guidance Tier","labelPlural":"Pricing Guidance Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance","labelPlural":"Change Event: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance","labelPlural":"History: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PricingGuidance__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Pricing Guidance","labelPlural":"Share: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0g","label":"Pricing + Guidance","labelPlural":"Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Condition","labelPlural":"Change Event: Process Input + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0h","label":"Process + Input Condition","labelPlural":"Process Input Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Values","labelPlural":"Change Event: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Process Input Values","labelPlural":"Share: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0i","label":"Process + Input Values","labelPlural":"Process Input Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInput__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input","labelPlural":"Change Event: Process Input","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0j","label":"Process + Input","labelPlural":"Process Inputs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Action","labelPlural":"Change Event: Product Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0k","label":"Product + Action","labelPlural":"Product Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Attribute Set","labelPlural":"Change Event: Product Attribute + Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Attribute Set","labelPlural":"Share: Product Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0l","label":"Product + Attribute Set","labelPlural":"Product Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Item","labelPlural":"Change Event: Attribute Item","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0m","label":"Attribute + Item","labelPlural":"Attribute Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductFeature__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Feature","labelPlural":"Change Event: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductFeature__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Feature","labelPlural":"Share: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0n","label":"Product + Feature","labelPlural":"Product Features","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductOption__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Option","labelPlural":"Change Event: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductOption__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Option","labelPlural":"Share: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0o","label":"Product + Option","labelPlural":"Product Options","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Rule","labelPlural":"Change Event: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Rule","labelPlural":"Share: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0p","label":"Product + Rule","labelPlural":"Product Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ProductRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Document","labelPlural":"Change Event: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Document","labelPlural":"History: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0q","label":"Quote + Document","labelPlural":"Quote Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Rate","labelPlural":"Change Event: Quote Line + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0r","label":"Quote + Line Consumption Rate","labelPlural":"Quote Line Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Schedule","labelPlural":"Change Event: Quote + Line Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0s","label":"Quote + Line Consumption Schedule","labelPlural":"Quote Line Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Group","labelPlural":"Change Event: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Group","labelPlural":"History: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0t","label":"Quote + Line Group","labelPlural":"Quote Line Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Pricing Guidance","labelPlural":"Change Event: Quote Line + Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Pricing Guidance","labelPlural":"History: Quote Line Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0u","label":"Quote + Line Pricing Guidance","labelPlural":"Quote Line Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line","labelPlural":"Change Event: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line","labelPlural":"History: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0v","label":"Quote + Line","labelPlural":"Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteProcess__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Process","labelPlural":"Change Event: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteProcess__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Process","labelPlural":"Share: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0w","label":"Quote + Process","labelPlural":"Quote Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteProcess__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Template","labelPlural":"Change Event: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Template","labelPlural":"History: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Template","labelPlural":"Share: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0x","label":"Quote + Template","labelPlural":"Quote Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTemplate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTerm__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Term","labelPlural":"Change Event: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTerm__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Term","labelPlural":"Share: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0y","label":"Quote + Term","labelPlural":"Quote Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTerm__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote","labelPlural":"Change Event: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote","labelPlural":"History: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Quote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote","labelPlural":"Share: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0z","label":"Quote","labelPlural":"Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Quote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Quote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RecordJob__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Record Job","labelPlural":"Change Event: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RecordJob__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Record Job","labelPlural":"Share: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a10","label":"Record + Job","labelPlural":"Record Jobs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RelatedContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Additional Document","labelPlural":"Change Event: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RelatedContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Additional Document","labelPlural":"Share: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a12","label":"Additional + Document","labelPlural":"Additional Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchFilter__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Filter","labelPlural":"Change Event: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchFilter__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Filter","labelPlural":"Share: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a14","label":"Search + Filter","labelPlural":"Search Filters","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SearchFilter__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchIndex__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Index","labelPlural":"Change Event: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchIndex__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Index","labelPlural":"Share: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a15","label":"Search + Index","labelPlural":"Search Index","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Solution Group","labelPlural":"Change Event: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Solution Group","labelPlural":"History: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SolutionGroup__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Solution Group","labelPlural":"Share: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a16","label":"Solution + Group","labelPlural":"Solution Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SolutionGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedAsset__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Asset","labelPlural":"Change Event: Subscribed Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a17","label":"Subscribed + Asset","labelPlural":"Subscribed Assets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Quote Line","labelPlural":"Change Event: Subscribed Quote + Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscribed Quote Line","labelPlural":"Share: Subscribed Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a18","label":"Subscribed + Quote Line","labelPlural":"Subscribed Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Rate","labelPlural":"Change Event: Subscription + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a19","label":"Subscription + Consumption Rate","labelPlural":"Subscription Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Schedule","labelPlural":"Change Event: Subscription + Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1A","label":"Subscription + Consumption Schedule","labelPlural":"Subscription Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Subscription__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription","labelPlural":"Change Event: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Subscription__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscription","labelPlural":"Share: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1B","label":"Subscription","labelPlural":"Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SummaryVariable__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Summary Variable","labelPlural":"Change Event: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SummaryVariable__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Summary Variable","labelPlural":"Share: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1C","label":"Summary + Variable","labelPlural":"Summary Variables","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SummaryVariable__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TaxExemptionCertificate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Tax Exemption Certificate","labelPlural":"Change Event: Tax Exemption + Certificate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1D","label":"Tax + Exemption Certificate","labelPlural":"Tax Exemption Certificates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Content","labelPlural":"Change Event: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TemplateContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Template Content","labelPlural":"Share: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1E","label":"Template + Content","labelPlural":"Template Content","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__TemplateContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateSection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Section","labelPlural":"Change Event: Template Section","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1F","label":"Template + Section","labelPlural":"Template Sections","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TermCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Term Condition","labelPlural":"Change Event: Term Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1G","label":"Term + Condition","labelPlural":"Term Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Theme__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Theme","labelPlural":"Change Event: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Theme__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Theme","labelPlural":"Share: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1H","label":"Theme","labelPlural":"Themes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Theme__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Theme__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TimingLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Timing Log","labelPlural":"Change Event: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TimingLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Timing Log","labelPlural":"Share: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1I","label":"Timing + Log","labelPlural":"Timing Logs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__UpgradeSource__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Upgrade Source","labelPlural":"Change Event: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__UpgradeSource__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Upgrade Source","labelPlural":"Share: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1J","label":"Upgrade + Source","labelPlural":"Upgrade Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote Line","labelPlural":"Change Event: Web Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1K","label":"Web + Quote Line","labelPlural":"Web Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote","labelPlural":"Change Event: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Web Quote","labelPlural":"History: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__WebQuote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Web Quote","labelPlural":"Share: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1L","label":"Web + Quote","labelPlural":"Web Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__WebQuote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J4","label":"Service + Provider SAML Attribute","labelPlural":"Service Provider SAML Attributes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SPSamlAttributes","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SPSamlAttributes/{ID}","describe":"/services/data/v58.0/sobjects/SPSamlAttributes/describe","sobject":"/services/data/v58.0/sobjects/SPSamlAttributes"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0LE","label":"SAML + Single Sign-On Setting","labelPlural":"SAML Single Sign-On Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SamlSsoConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SamlSsoConfig/{ID}","describe":"/services/data/v58.0/sobjects/SamlSsoConfig/describe","sobject":"/services/data/v58.0/sobjects/SamlSsoConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hA","label":"Scheduling + Constraint","labelPlural":"Scheduling Constraints","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingConstraint","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraint/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SchedulingConstraint/describe","layouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingConstraint"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SchedulingConstraint","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scheduling + Constraint Share","labelPlural":"Scheduling Constraint Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingConstraintShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraintShare/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingConstraintShare/describe","sobject":"/services/data/v58.0/sobjects/SchedulingConstraintShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0no","label":"Scheduling + Objective","labelPlural":"Scheduling Objectives","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingObjective","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjective/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjective/describe","layouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingObjective"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0np","label":"Scheduling + Objective Parameter","labelPlural":"Scheduling Objective Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingObjectiveParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Md","label":"Scheduling + Rule","labelPlural":"Scheduling Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingRule/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRule/describe","layouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hm","label":"Scheduling + Rule Parameter","labelPlural":"Scheduling Rule Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingRuleParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingRuleParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRuleParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingRuleParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01N","label":"Custom + S-Control","labelPlural":"Custom S-Controls","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Scontrol","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Scontrol/{ID}","describe":"/services/data/v58.0/sobjects/Scontrol/describe","sobject":"/services/data/v58.0/sobjects/Scontrol"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01f","label":"Scorecard","labelPlural":"Scorecards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Scorecard","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Scorecard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Scorecard/{ID}","describe":"/services/data/v58.0/sobjects/Scorecard/describe","layouts":"/services/data/v58.0/sobjects/Scorecard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Scorecard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qn","label":"Scorecard + Association","labelPlural":"Scorecard Associations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ScorecardAssociation","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardAssociation/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardAssociation/describe","layouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardAssociation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Om","label":"Scorecard + Metric","labelPlural":"Scorecard Metrics","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ScorecardMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardMetric/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardMetric/describe","layouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardMetric"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Scorecard","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scorecard + Share","labelPlural":"Scorecard Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ScorecardShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ScorecardShare/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardShare/describe","sobject":"/services/data/v58.0/sobjects/ScorecardShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4co","label":"Search + Layout","labelPlural":"Search Layouts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SearchLayout","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchLayout/{ID}","describe":"/services/data/v58.0/sobjects/SearchLayout/describe","sobject":"/services/data/v58.0/sobjects/SearchLayout"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MD","label":"Promoted + Search Term","labelPlural":"Promoted Search Terms","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SearchPromotionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchPromotionRule/{ID}","describe":"/services/data/v58.0/sobjects/SearchPromotionRule/describe","layouts":"/services/data/v58.0/sobjects/SearchPromotionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SearchPromotionRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09v","label":"Security + Custom Baseline","labelPlural":"Security Custom Baselines","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SecurityCustomBaseline","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SecurityCustomBaseline/{ID}","describe":"/services/data/v58.0/sobjects/SecurityCustomBaseline/describe","sobject":"/services/data/v58.0/sobjects/SecurityCustomBaseline"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0q6","label":"Seller","labelPlural":"Sellers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Seller","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Seller/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Seller/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Seller/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Seller/describe","layouts":"/services/data/v58.0/sobjects/Seller/describe/layouts","sobject":"/services/data/v58.0/sobjects/Seller"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Seller","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + History","labelPlural":"Seller History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerHistory/{ID}","describe":"/services/data/v58.0/sobjects/SellerHistory/describe","sobject":"/services/data/v58.0/sobjects/SellerHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Seller","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + Share","labelPlural":"Seller Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerShare/{ID}","describe":"/services/data/v58.0/sobjects/SellerShare/describe","sobject":"/services/data/v58.0/sobjects/SellerShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sentry_Active_Config__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sentry Active Config","labelPlural":"Change Event: Sentry Active Config","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1S","label":"Sentry + Active Config","labelPlural":"Sentry Active Config","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe","quickActions":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m00","label":"Sentry + Config","labelPlural":"Sentry Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sentry_Config__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Config__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe","layouts":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Config__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"e00","label":"Sentry + Error","labelPlural":"Sentry Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Error__e","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Error__e/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Error__e/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Error__e/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Error__e"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jR","label":"Serialized + Product","labelPlural":"Serialized Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProduct","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProduct/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProduct/describe","quickActions":"/services/data/v58.0/sobjects/SerializedProduct/quickActions","layouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProduct"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Feed","labelPlural":"Serialized Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product History","labelPlural":"Serialized Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SerializedProduct","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Share","labelPlural":"Serialized Product Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductShare/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductShare/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jM","label":"Serialized + Product Transaction","labelPlural":"Serialized Product Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProductTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe","layouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProductTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction Feed","labelPlural":"Serialized Product Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction History","labelPlural":"Serialized Product Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08p","label":"Service + Appointment","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Share","labelPlural":"Service Appointment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Status Value","labelPlural":"Service Appointment Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"810","label":"Service + Contract","labelPlural":"Service Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceContract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceContract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceContract/describe","quickActions":"/services/data/v58.0/sobjects/ServiceContract/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceContract/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceContract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Change Event","labelPlural":"Service Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Feed","labelPlural":"Service Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract History","labelPlural":"Service Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceContract","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Share","labelPlural":"Service Contract Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cr","label":"Service + Crew","labelPlural":"Service Crews","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrew","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrew/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrew/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrew/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrew"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Change Event","labelPlural":"Service Crew Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Feed","labelPlural":"Service Crew Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew History","labelPlural":"Service Crew History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cm","label":"Service + Crew Member","labelPlural":"Service Crew Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrewMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrewMember/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrewMember/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrewMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Change Event","labelPlural":"Service Crew Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Feed","labelPlural":"Service Crew Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member History","labelPlural":"Service Crew Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceCrew","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Share","labelPlural":"Service Crew Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SR","label":"Service + Report","labelPlural":"Service Reports","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReport/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReport/describe","sobject":"/services/data/v58.0/sobjects/ServiceReport"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Change Event","labelPlural":"Service Report Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report History","labelPlural":"Service Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SL","label":"Service + Report Layout","labelPlural":"Service Report Layouts","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ServiceReportLayout","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayout/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportLayout/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayout"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReportLayout","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Layout Change Event","labelPlural":"Service Report Layout Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportLayoutChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hn","label":"Service + Resource","labelPlural":"Service Resources","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResource/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResource/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hy","label":"Resource + Capacity","labelPlural":"Resource Capacities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceCapacity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourceCapacity/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Change Event","labelPlural":"Resource Capacity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Feed","labelPlural":"Resource Capacity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity History","labelPlural":"Resource Capacity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Change Event","labelPlural":"Service Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Feed","labelPlural":"Service Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource History","labelPlural":"Service Resource History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0l6","label":"Service + Resource Preference","labelPlural":"Service Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreference/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourcePreference/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreference"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ServiceResourcePreference not found in section + StandardFeedLabel","labelPlural":"__MISSING LABEL__ PropertyFile - val ServiceResourcePreference + not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference History","labelPlural":"Service Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResourcePreference","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference Share","labelPlural":"Service Resource Preference Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResource","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Share","labelPlural":"Service Resource Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hv","label":"Service + Resource Skill","labelPlural":"Service Resource Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe","layouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Change Event","labelPlural":"Service Resource Skill Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Feed","labelPlural":"Service Resource Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill History","labelPlural":"Service Resource Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9gd","label":"Service + Setup Provisioning","labelPlural":"Service Setup Provisionings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceSetupProvisioning","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/{ID}","describe":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/describe","sobject":"/services/data/v58.0/sobjects/ServiceSetupProvisioning"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hh","label":"Service + Territory","labelPlural":"Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritory/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritory/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritory/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Change Event","labelPlural":"Service Territory Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Feed","labelPlural":"Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory History","labelPlural":"Service Territory History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1Sl","label":"Service + Territory Location","labelPlural":"Service Territory Locations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Change Event","labelPlural":"Service Territory Location + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Feed","labelPlural":"Service Territory Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Territory + Location History","labelPlural":"Territory Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hu","label":"Service + Territory Member","labelPlural":"Service Territory Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritoryMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Change Event","labelPlural":"Service Territory Member Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Feed","labelPlural":"Service Territory Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member History","labelPlural":"Service Territory Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceTerritory","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Share","labelPlural":"Service Territory Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zh","label":"Session + Hijacking Event","labelPlural":"Session Hijacking Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SessionHijackingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SessionHijackingEvent/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zj","label":"Session + Hijacking Event Store","labelPlural":"Session Hijacking Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SessionHijackingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/SessionHijackingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SessionHijackingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Session + Hijacking Event Store Feed","labelPlural":"Session Hijacking Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Pa","label":"Session + Permission Set Activation","labelPlural":"Session Permission Set Activations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SessionPermSetActivation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionPermSetActivation/{ID}","describe":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe","layouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionPermSetActivation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Ys","label":"Setup + Assistant Step","labelPlural":"Setup Assistant Steps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAssistantStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAssistantStep/{ID}","describe":"/services/data/v58.0/sobjects/SetupAssistantStep/describe","sobject":"/services/data/v58.0/sobjects/SetupAssistantStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ym","label":"Setup + Audit Trail Entry","labelPlural":"Setup Audit Trail Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAuditTrail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAuditTrail/{ID}","describe":"/services/data/v58.0/sobjects/SetupAuditTrail/describe","sobject":"/services/data/v58.0/sobjects/SetupAuditTrail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J0","label":"Setup + Entity Access","labelPlural":"Setup Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/SetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/SetupEntityAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m01","label":"Setup + Configuration Data","labelPlural":"Setup Configuration Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Configuration_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m02","label":"Setup + Connection Data","labelPlural":"Setup Connection Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Connection_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Data__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Data","labelPlural":"Change Event: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Setup_Data__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Setup Data","labelPlural":"Share: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__Share/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Data__Share/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1T","label":"Setup + Data","labelPlural":"Setup Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Data__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Setup_Data__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Data__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Data__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Settings__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Settings","labelPlural":"Change Event: Setup Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1U","label":"Setup + Settings","labelPlural":"Setup Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__c/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Settings__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Settings__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Settings__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Settings__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0a0","label":"Shift","labelPlural":"Shifts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shift","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shift/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shift/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shift/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shift/describe","quickActions":"/services/data/v58.0/sobjects/Shift/quickActions","layouts":"/services/data/v58.0/sobjects/Shift/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shift"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Change Event","labelPlural":"Shift Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Feed","labelPlural":"Shift Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + History","labelPlural":"Shift History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w1","label":"Shift + Pattern","labelPlural":"Shift Patterns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPattern","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPattern/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShiftPattern/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPattern/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPattern"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Change Event","labelPlural":"Shift Pattern Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w2","label":"Shift + Pattern Entry","labelPlural":"Shift Pattern Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPatternEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntry/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPatternEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Change Event","labelPlural":"Shift Pattern Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Feed","labelPlural":"Shift Pattern Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry History","labelPlural":"Shift Pattern Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Feed","labelPlural":"Shift Pattern Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern History","labelPlural":"Shift Pattern History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftPattern","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Share","labelPlural":"Shift Pattern Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shift","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Share","labelPlural":"Shift Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Status Value","labelPlural":"Shift Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftStatus/{ID}","describe":"/services/data/v58.0/sobjects/ShiftStatus/describe","sobject":"/services/data/v58.0/sobjects/ShiftStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iJ","label":"Shift + Template","labelPlural":"Shift Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplate/describe","layouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Change Event","labelPlural":"Shift Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Share","labelPlural":"Shift Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OB","label":"Shipment","labelPlural":"Shipments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shipment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shipment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shipment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shipment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shipment/describe","quickActions":"/services/data/v58.0/sobjects/Shipment/quickActions","layouts":"/services/data/v58.0/sobjects/Shipment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shipment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Change Event","labelPlural":"Shipment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShipmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShipmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShipmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Feed","labelPlural":"Shipment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + History","labelPlural":"Shipment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ob","label":"Shipment + Item","labelPlural":"Shipment Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ShipmentItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShipmentItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShipmentItem/describe","quickActions":"/services/data/v58.0/sobjects/ShipmentItem/quickActions","layouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShipmentItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shipment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Share","labelPlural":"Shipment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentShare/describe","sobject":"/services/data/v58.0/sobjects/ShipmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DM","label":"Site","labelPlural":"Sites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Site","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Site/{ID}","describe":"/services/data/v58.0/sobjects/Site/describe","sobject":"/services/data/v58.0/sobjects/Site"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GV","label":"Site + Detail","labelPlural":"Site Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteDetail/{ID}","describe":"/services/data/v58.0/sobjects/SiteDetail/describe","sobject":"/services/data/v58.0/sobjects/SiteDetail"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site","labelPlural":"Site","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteFeed/{ID}","describe":"/services/data/v58.0/sobjects/SiteFeed/describe","sobject":"/services/data/v58.0/sobjects/SiteFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site + History","labelPlural":"Site History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteHistory/{ID}","describe":"/services/data/v58.0/sobjects/SiteHistory/describe","sobject":"/services/data/v58.0/sobjects/SiteHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xs","label":"Trusted + Domains for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteIframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H0","label":"Site + Redirect Mapping","labelPlural":"Site Redirect Mapping","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteRedirectMapping","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteRedirectMapping/{ID}","describe":"/services/data/v58.0/sobjects/SiteRedirectMapping/describe","sobject":"/services/data/v58.0/sobjects/SiteRedirectMapping"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C5","label":"Skill","labelPlural":"Skills","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Skill","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Skill/{ID}","describe":"/services/data/v58.0/sobjects/Skill/describe","sobject":"/services/data/v58.0/sobjects/Skill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Skill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Change Event","labelPlural":"Skill Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hx","label":"Skill + Requirement","labelPlural":"Skill Requirements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SkillRequirement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SkillRequirement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SkillRequirement/describe","layouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/layouts","sobject":"/services/data/v58.0/sobjects/SkillRequirement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Change Event","labelPlural":"Skill Requirement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Feed","labelPlural":"Skill Requirement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementFeed/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementFeed/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement History","labelPlural":"Skill Requirement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementHistory/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementHistory/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"13B","label":"Skill + Type","labelPlural":"Skill Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillType/{ID}","describe":"/services/data/v58.0/sobjects/SkillType/describe","sobject":"/services/data/v58.0/sobjects/SkillType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"552","label":"Entitlement + Process","labelPlural":"Entitlement Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SlaProcess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SlaProcess/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SlaProcess/{ID}","describe":"/services/data/v58.0/sobjects/SlaProcess/describe","layouts":"/services/data/v58.0/sobjects/SlaProcess/describe/layouts","sobject":"/services/data/v58.0/sobjects/SlaProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"501","label":"Solution","labelPlural":"Solutions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Solution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Solution/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Solution/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Solution/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Solution/describe","layouts":"/services/data/v58.0/sobjects/Solution/describe/layouts","sobject":"/services/data/v58.0/sobjects/Solution"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Feed","labelPlural":"Solution Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SolutionFeed/describe","sobject":"/services/data/v58.0/sobjects/SolutionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + History","labelPlural":"Solution History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SolutionHistory/describe","sobject":"/services/data/v58.0/sobjects/SolutionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Status Value","labelPlural":"Solution Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionStatus/{ID}","describe":"/services/data/v58.0/sobjects/SolutionStatus/describe","sobject":"/services/data/v58.0/sobjects/SolutionStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xv","label":"Source + Change Notification","labelPlural":"Source Change Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SourceChangeNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SourceChangeNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/SourceChangeNotification/eventSchema","describe":"/services/data/v58.0/sobjects/SourceChangeNotification/describe","sobject":"/services/data/v58.0/sobjects/SourceChangeNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ST","label":"Stamp","labelPlural":"Stamps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stamp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stamp/{ID}","describe":"/services/data/v58.0/sobjects/Stamp/describe","sobject":"/services/data/v58.0/sobjects/Stamp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SA","label":"Stamp + Assignment","labelPlural":"Stamp Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StampAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StampAssignment/{ID}","describe":"/services/data/v58.0/sobjects/StampAssignment/describe","sobject":"/services/data/v58.0/sobjects/StampAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"081","label":"Static + Resource","labelPlural":"Static Resources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"StaticResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StaticResource/{ID}","describe":"/services/data/v58.0/sobjects/StaticResource/describe","sobject":"/services/data/v58.0/sobjects/StaticResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0M6","label":"Streaming + Channel","labelPlural":"Streaming Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"StreamingChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/StreamingChannel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/StreamingChannel/describe","layouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/layouts","push":"/services/data/v58.0/sobjects/StreamingChannel/{ID}/push","sobject":"/services/data/v58.0/sobjects/StreamingChannel"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"StreamingChannel","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Streaming + Channel Share","labelPlural":"Streaming Channel Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StreamingChannelShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StreamingChannelShare/{ID}","describe":"/services/data/v58.0/sobjects/StreamingChannelShare/describe","sobject":"/services/data/v58.0/sobjects/StreamingChannelShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Stripe_Connection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Stripe_Connection","labelPlural":"Change Event: Stripe_Connection","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1V","label":"Stripe_Connection","labelPlural":"Stripe_Connection","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__c/{ID}","describe":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe","quickActions":"/services/data/v58.0/sobjects/Stripe_Connection__c/quickActions","layouts":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sW","label":"Swarm","labelPlural":"Swarms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Swarm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Swarm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Swarm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Swarm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Swarm/describe","quickActions":"/services/data/v58.0/sobjects/Swarm/quickActions","layouts":"/services/data/v58.0/sobjects/Swarm/describe/layouts","sobject":"/services/data/v58.0/sobjects/Swarm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Feed","labelPlural":"Swarm Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + History","labelPlural":"Swarm History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sR","label":"Swarm + Member","labelPlural":"Swarm Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SwarmMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SwarmMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SwarmMember/describe","quickActions":"/services/data/v58.0/sobjects/SwarmMember/quickActions","layouts":"/services/data/v58.0/sobjects/SwarmMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/SwarmMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Feed","labelPlural":"Swarm Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member History","labelPlural":"Swarm Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SwarmMember","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Share","labelPlural":"Swarm Member Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Swarm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Share","labelPlural":"Swarm Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sync_Record__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sync Record","labelPlural":"Change Event: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Sync_Record__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Sync Record","labelPlural":"Share: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__Share/{ID}","describe":"/services/data/v58.0/sobjects/Sync_Record__Share/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1W","label":"Sync + Record","labelPlural":"Sync Management","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sync_Record__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Sync_Record__c/describe","quickActions":"/services/data/v58.0/sobjects/Sync_Record__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sync_Record__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0KD","label":"Tab + Definition","labelPlural":"Tab Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TabDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TabDefinition/{ID}","describe":"/services/data/v58.0/sobjects/TabDefinition/describe","sobject":"/services/data/v58.0/sobjects/TabDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00T","label":"Task","labelPlural":"Tasks","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Task","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Task/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Task/{ID}","describe":"/services/data/v58.0/sobjects/Task/describe","quickActions":"/services/data/v58.0/sobjects/Task/quickActions","layouts":"/services/data/v58.0/sobjects/Task/describe/layouts","sobject":"/services/data/v58.0/sobjects/Task"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Change Event","labelPlural":"Task Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TaskChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TaskChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TaskChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Feed","labelPlural":"Task Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskFeed/{ID}","describe":"/services/data/v58.0/sobjects/TaskFeed/describe","sobject":"/services/data/v58.0/sobjects/TaskFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Priority Value","labelPlural":"Task Priority Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskPriority","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskPriority/{ID}","describe":"/services/data/v58.0/sobjects/TaskPriority/describe","sobject":"/services/data/v58.0/sobjects/TaskPriority"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Status Value","labelPlural":"Task Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskStatus/{ID}","describe":"/services/data/v58.0/sobjects/TaskStatus/describe","sobject":"/services/data/v58.0/sobjects/TaskStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UT","label":"Tenant + Usage Entitlement","labelPlural":"Tenant Usage Entitlements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"TenantUsageEntitlement","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TenantUsageEntitlement/{ID}","describe":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe","layouts":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/TenantUsageEntitlement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hd","label":"Test + Suite Membership","labelPlural":"Test Suite Memberships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TestSuiteMembership","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TestSuiteMembership/{ID}","describe":"/services/data/v58.0/sobjects/TestSuiteMembership/describe","sobject":"/services/data/v58.0/sobjects/TestSuiteMembership"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jr","label":"Third + Party Account Link","labelPlural":"Third Party Account Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThirdPartyAccountLink","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/{ID}","describe":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/describe","sobject":"/services/data/v58.0/sobjects/ThirdPartyAccountLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hY","label":"Threat + Detection Feedback","labelPlural":"Threat Detection Feedback","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ThreatDetectionFeedback","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe","quickActions":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/quickActions","layouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/layouts","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedback"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ThreatDetectionFeedback","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Threat + Detection Feedback Feed","labelPlural":"Threat Detection Feedback Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThreatDetectionFeedbackFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/describe","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ts","label":"Time + Sheet","labelPlural":"Time Sheets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheet/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheet/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheet/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheet"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Change Event","labelPlural":"Time Sheet Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1te","label":"Time + Sheet Entry","labelPlural":"Time Sheet Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheetEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheetEntry/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheetEntry/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheetEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Change Event","labelPlural":"Time Sheet Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Feed","labelPlural":"Time Sheet Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry History","labelPlural":"Time Sheet Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Feed","labelPlural":"Time Sheet Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet History","labelPlural":"Time Sheet History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TimeSheet","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Share","labelPlural":"Time Sheet Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetShare/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetShare/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gj","label":"Time + Slot","labelPlural":"Time Slots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/TimeSlot/describe","layouts":"/services/data/v58.0/sobjects/TimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSlot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Slot Change Event","labelPlural":"Time Slot Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSlotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSlotChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jz","label":"Goal","labelPlural":"Goals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoal","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoal/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoal/describe","sobject":"/services/data/v58.0/sobjects/TodayGoal"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TodayGoal","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Goal + Share","labelPlural":"Goal Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoalShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoalShare/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoalShare/describe","sobject":"/services/data/v58.0/sobjects/TodayGoalShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TO","label":"Topic","labelPlural":"Topics","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Topic","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Topic/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Topic/{ID}","describe":"/services/data/v58.0/sobjects/Topic/describe","layouts":"/services/data/v58.0/sobjects/Topic/describe/layouts","sobject":"/services/data/v58.0/sobjects/Topic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FT","label":"Topic + Assignment","labelPlural":"Topic Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicAssignment/{ID}","describe":"/services/data/v58.0/sobjects/TopicAssignment/describe","sobject":"/services/data/v58.0/sobjects/TopicAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Topic","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Topic + Feed","labelPlural":"Topic Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicFeed/{ID}","describe":"/services/data/v58.0/sobjects/TopicFeed/describe","sobject":"/services/data/v58.0/sobjects/TopicFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0te","label":"Topic + User Event","labelPlural":"Topic User Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicUserEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicUserEvent/{ID}","describe":"/services/data/v58.0/sobjects/TopicUserEvent/describe","sobject":"/services/data/v58.0/sobjects/TopicUserEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0NI","label":"Transaction + Security Policy","labelPlural":"Transaction Security Policies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TransactionSecurityPolicy","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/{ID}","describe":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/describe","sobject":"/services/data/v58.0/sobjects/TransactionSecurityPolicy"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01h","label":"Language + Translation","labelPlural":"Language Translation","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Translation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Translation/{ID}","describe":"/services/data/v58.0/sobjects/Translation/describe","sobject":"/services/data/v58.0/sobjects/Translation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5pL","label":"Travel + Mode","labelPlural":"Travel Modes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TravelMode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TravelMode/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TravelMode/describe","quickActions":"/services/data/v58.0/sobjects/TravelMode/quickActions","layouts":"/services/data/v58.0/sobjects/TravelMode/describe/layouts","sobject":"/services/data/v58.0/sobjects/TravelMode"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TravelMode","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Feed","labelPlural":"Travel Mode Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeFeed/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeFeed/describe","sobject":"/services/data/v58.0/sobjects/TravelModeFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TravelMode","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Share","labelPlural":"Travel Mode Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeShare/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeShare/describe","sobject":"/services/data/v58.0/sobjects/TravelModeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gp","label":"Ui + Formula Criterion","labelPlural":"Ui Formula Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaCriterion/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09t","label":"Ui + Formula Rule","labelPlural":"Ui Formula Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaRule/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaRule/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Undecided + Event Relation","labelPlural":"Undecided Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UndecidedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UndecidedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/UndecidedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/UndecidedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hE","label":"Unit + of Measure","labelPlural":"Units of Measure","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UnitOfMeasure","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasure/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UnitOfMeasure/describe","layouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/layouts","sobject":"/services/data/v58.0/sobjects/UnitOfMeasure"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UnitOfMeasure","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Unit + of Measure Share","labelPlural":"Unit of Measure Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UnitOfMeasureShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasureShare/{ID}","describe":"/services/data/v58.0/sobjects/UnitOfMeasureShare/describe","sobject":"/services/data/v58.0/sobjects/UnitOfMeasureShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uw","label":"URI + Event","labelPlural":"URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEvent/{ID}","describe":"/services/data/v58.0/sobjects/UriEvent/describe","sobject":"/services/data/v58.0/sobjects/UriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ux","label":"URI + Event Stream ","labelPlural":"URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/UriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/UriEventStream/describe","sobject":"/services/data/v58.0/sobjects/UriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"005","label":"User","labelPlural":"Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"User","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/User/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/User/{ID}","namedLayouts":"/services/data/v58.0/sobjects/User/describe/namedLayouts/{LayoutName}","passwordUtilities":"/services/data/v58.0/sobjects/User/{ID}/password","describe":"/services/data/v58.0/sobjects/User/describe","quickActions":"/services/data/v58.0/sobjects/User/quickActions","layouts":"/services/data/v58.0/sobjects/User/describe/layouts","sobject":"/services/data/v58.0/sobjects/User"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ds","label":"Last + Used App","labelPlural":"Last Used App","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppInfo/{ID}","describe":"/services/data/v58.0/sobjects/UserAppInfo/describe","sobject":"/services/data/v58.0/sobjects/UserAppInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nw","label":"UserAppMenuCustomization","labelPlural":"UserAppMenuCustomizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomization/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomization/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomization"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserAppMenuCustomization","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"UserAppMenuCustomization + Share","labelPlural":"UserAppMenuCustomization Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomizationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07p","label":"Application","labelPlural":"Applications","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UserAppMenuItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuItem/describe","layouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserAppMenuItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Change Event","labelPlural":"User Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/UserChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/UserChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/UserChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UV","label":"User + Email Preferred Person","labelPlural":"User Email Preferred People","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPerson","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPerson"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserEmailPreferredPerson","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Email Preferred Person Share","labelPlural":"User Email Preferred Person Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPersonShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07u","label":"User + Entity Access","labelPlural":"User Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserEntityAccess"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Feed","labelPlural":"User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFeed/{ID}","describe":"/services/data/v58.0/sobjects/UserFeed/describe","sobject":"/services/data/v58.0/sobjects/UserFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fp","label":"User + Field Access","labelPlural":"User Field Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFieldAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFieldAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserFieldAccess/describe","sobject":"/services/data/v58.0/sobjects/UserFieldAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"100","label":"User + License","labelPlural":"User Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserLicense/describe","sobject":"/services/data/v58.0/sobjects/UserLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Na","label":"User + List View","labelPlural":"User List View","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListView/{ID}","describe":"/services/data/v58.0/sobjects/UserListView/describe","sobject":"/services/data/v58.0/sobjects/UserListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JU","label":"User + List View Criteria","labelPlural":"User List View Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListViewCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListViewCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UserListViewCriterion/describe","sobject":"/services/data/v58.0/sobjects/UserListViewCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yw","label":"User + Login","labelPlural":"User Login","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLogin/{ID}","describe":"/services/data/v58.0/sobjects/UserLogin/describe","sobject":"/services/data/v58.0/sobjects/UserLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"051","label":"User + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User + Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User + Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User + Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User + Provisioning Account Staging","labelPlural":"User Provisioning Account Stagings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccountStaging","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccountStaging/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccountStaging/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccountStaging"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HX","label":"User + Provisioning Mock Target","labelPlural":"User Provisioning Mock Targets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvMockTarget","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvMockTarget/{ID}","describe":"/services/data/v58.0/sobjects/UserProvMockTarget/describe","sobject":"/services/data/v58.0/sobjects/UserProvMockTarget"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Je","label":"User + Provisioning Config","labelPlural":"User Provisioning Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningConfig/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningConfig/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hs","label":"User + Provisioning Log","labelPlural":"User Provisioning Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningLog/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningLog/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HP","label":"User + Provisioning Request","labelPlural":"User Provisioning Requests","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe","layouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserProvisioningRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Provisioning Request Share","labelPlural":"User Provisioning Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Record Access","labelPlural":"User Record Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserRecordAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserRecordAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserRecordAccess/describe","sobject":"/services/data/v58.0/sobjects/UserRecordAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00E","label":"Role","labelPlural":"Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserRole/{ID}","describe":"/services/data/v58.0/sobjects/UserRole/describe","layouts":"/services/data/v58.0/sobjects/UserRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g2","label":"User + Setup Entity Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserSetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserSetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserSetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserSetupEntityAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"User","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0N2","label":"User + Share","labelPlural":"User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserShare/{ID}","describe":"/services/data/v58.0/sobjects/UserShare/describe","sobject":"/services/data/v58.0/sobjects/UserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qt","label":"Identity + Verification History","labelPlural":"Identity Verification History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VerificationHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VerificationHistory/{ID}","describe":"/services/data/v58.0/sobjects/VerificationHistory/describe","sobject":"/services/data/v58.0/sobjects/VerificationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OP","label":"Visualforce + Access Metric","labelPlural":"Visualforce Access Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VisualforceAccessMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/{ID}","describe":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/describe","sobject":"/services/data/v58.0/sobjects/VisualforceAccessMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"083","label":"Vote","labelPlural":"Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Vote","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Vote/{ID}","describe":"/services/data/v58.0/sobjects/Vote/describe","sobject":"/services/data/v58.0/sobjects/Vote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4V3","label":"Warranty + Term","labelPlural":"Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WarrantyTerm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/WarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/WarrantyTerm"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Change Event","labelPlural":"Warranty Term Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Feed","labelPlural":"Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term History","labelPlural":"Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WarrantyTerm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Share","labelPlural":"Warranty Term Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermShare/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermShare/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00b","label":"Custom + Button or Link","labelPlural":"Custom Buttons or Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WebLink","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WebLink/{ID}","describe":"/services/data/v58.0/sobjects/WebLink/describe","sobject":"/services/data/v58.0/sobjects/WebLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W5","label":"Access","labelPlural":"Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccess/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccess/describe","sobject":"/services/data/v58.0/sobjects/WorkAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkAccess","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Access + Share","labelPlural":"Access Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccessShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccessShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccessShare/describe","sobject":"/services/data/v58.0/sobjects/WorkAccessShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W2","label":"Badge + Received","labelPlural":"Badges Received","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadge","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadge/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadge/describe","layouts":"/services/data/v58.0/sobjects/WorkBadge/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadge"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W1","label":"Badge","labelPlural":"Badges","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadgeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/WorkBadgeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Feed","labelPlural":"Badge Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + History","labelPlural":"Badge History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkBadgeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work + Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order History","labelPlural":"Work Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1WL","label":"Work + Order Line Item","labelPlural":"Work Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/approvalLayouts","workOrderLineItemRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}/suggestedArticles","describe":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/layouts","workOrderLineItemArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/suggestedArticles","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Change Event","labelPlural":"Work Order Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Feed","labelPlural":"Work Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item History","labelPlural":"Work Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Status Value","labelPlural":"Work Order Line Item Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Share","labelPlural":"Work Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderShare/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Status Value","labelPlural":"Work Order Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gq","label":"Work + Plan","labelPlural":"Work Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlan/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlan/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Change Event","labelPlural":"Work Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Feed","labelPlural":"Work Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan History","labelPlural":"Work Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gr","label":"Work + Plan Selection Rule","labelPlural":"Work Plan Selection Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanSelectionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Change Event","labelPlural":"Work Plan Selection Rule + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Feed","labelPlural":"Work Plan Selection Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule History","labelPlural":"Work Plan Selection Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanSelectionRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Share","labelPlural":"Work Plan Selection Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Share","labelPlural":"Work Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7Iy","label":"Work + Plan Template","labelPlural":"Work Plan Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Change Event","labelPlural":"Work Plan Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8xu","label":"Work + Plan Template Entry","labelPlural":"Work Plan Template Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplateEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Change Event","labelPlural":"Work Plan Template Entry + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Feed","labelPlural":"Work Plan Template Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry History","labelPlural":"Work Plan Template Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Feed","labelPlural":"Work Plan Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template History","labelPlural":"Work Plan Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Share","labelPlural":"Work Plan Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hF","label":"Work + Step","labelPlural":"Work Steps","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStep/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStep/describe","quickActions":"/services/data/v58.0/sobjects/WorkStep/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStep/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStep"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Change Event","labelPlural":"Work Step Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Feed","labelPlural":"Work Step Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step History","labelPlural":"Work Step History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Status Value","labelPlural":"Work Step Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkStepStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4L0","label":"Work + Step Template","labelPlural":"Work Step Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStepTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStepTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkStepTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStepTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Change Event","labelPlural":"Work Step Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Feed","labelPlural":"Work Step Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template History","labelPlural":"Work Step Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkStepTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Share","labelPlural":"Work Step Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W0","label":"Thanks","labelPlural":"Thanks","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"WorkThanks","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanks/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanks/describe","layouts":"/services/data/v58.0/sobjects/WorkThanks/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkThanks"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkThanks","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Thanks + Share","labelPlural":"Thanks Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkThanksShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanksShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanksShare/describe","sobject":"/services/data/v58.0/sobjects/WorkThanksShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08q","label":"Work + Type","labelPlural":"Work Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkType/describe","quickActions":"/services/data/v58.0/sobjects/WorkType/quickActions","layouts":"/services/data/v58.0/sobjects/WorkType/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkType"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Change Event","labelPlural":"Work Type Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Feed","labelPlural":"Work Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VS","label":"Work + Type Group","labelPlural":"Work Type Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroup/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroup/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Feed","labelPlural":"Work Type Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group History","labelPlural":"Work Type Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Wz","label":"Work + Type Group Member","labelPlural":"Work Type Group Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroupMember/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member Feed","labelPlural":"Work Type Group Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member History","labelPlural":"Work Type Group Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkTypeGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20OrderItem%0AWHERE%20OrderId%20=%20%278018N00000032c9QAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:01 GMT + Set-Cookie: + - BrowserId=pObPwGxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:01 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=473/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2tQAA"},"Id":"8028N0000005p2tQAA"},{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2uQAA"},"Id":"8028N0000005p2uQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2tQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:02 GMT + Set-Cookie: + - BrowserId=pP52ymxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=470/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:57 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2tQAA"},"Id":"8028N0000005p2tQAA","Product2Id":"01t8N000003DfNuQAK","IsDeleted":false,"OrderId":"8018N00000032c9QAA","PricebookEntryId":"01u8N000003e0MPQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2024-10-16","EndDate":"2025-10-15","Description":null,"CreatedDate":"2023-10-16T18:12:51.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:57.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:57.000+0000","OrderItemNumber":"0000000218","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihsUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__QuoteLine__c":"a0v8N000002TJgdQAG","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479963671","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1O1vHhIsgf92XbAOHFz4s27G","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1O1vHhIsgf92XbAOHFz4s27G"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2uQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:02 GMT + Set-Cookie: + - BrowserId=pRz6-GxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=473/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:59 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2uQAA"},"Id":"8028N0000005p2uQAA","Product2Id":"01t8N000003DfNuQAK","IsDeleted":false,"OrderId":"8018N00000032c9QAA","PricebookEntryId":"01u8N000003e0MPQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2023-10-16","EndDate":"2024-10-15","Description":null,"CreatedDate":"2023-10-16T18:12:51.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:59.000+0000","OrderItemNumber":"0000000219","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihsUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__QuoteLine__c":"a0v8N000002TJgcQAG","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479963671","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1O1vHjIsgf92XbAOB8BTPrpR","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1O1vHjIsgf92XbAOB8BTPrpR"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278018N00000032c9QAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:02 GMT + Set-Cookie: + - BrowserId=pTf9CmxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=474/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N8N000000QgUtUAK"},"Id":"a1N8N000000QgUtUAK"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N8N000000QgUtUAK + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:02 GMT + Set-Cookie: + - BrowserId=pVDbr2xPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=468/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:52 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N8N000000QgUtUAK"},"Id":"a1N8N000000QgUtUAK","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"0002","CreatedDate":"2023-10-16T18:12:52.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:52.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":null,"Order__c":"8018N00000032c9QAA","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R8N000000vglGUAQ","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R8N000000vglGUAQ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:02 GMT + Set-Cookie: + - BrowserId=pWlGQmxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:02 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=474/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:48 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R8N000000vglGUAQ"},"Id":"a1R8N000000vglGUAQ","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"0003","CreatedDate":"2023-10-16T18:12:48.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:48.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:48.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Percent_Off__c":null,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/coupons + body: + encoding: UTF-8 + string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N8N000000QgUtUAK&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2Fa1N8N000000QgUtUAK¤cy=usd + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_mg8bcepVtXT8AM","request_duration_ms":241}}' + Idempotency-Key: + - bdf8e2b7-31b7-4cea-b2e9-f298ad207d2a + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:13:03 GMT + Content-Type: + - application/json + Content-Length: + - '532' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fcoupons; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - bdf8e2b7-31b7-4cea-b2e9-f298ad207d2a + Original-Request: + - req_05ncAY4sfdi9Uq + Request-Id: + - req_05ncAY4sfdi9Uq + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "Or2J6Fp4", + "object": "coupon", + "amount_off": 1000, + "created": 1697479983, + "currency": "usd", + "duration": "once", + "duration_in_months": null, + "livemode": false, + "max_redemptions": null, + "metadata": { + "salesforce_order_stripe_coupon_id": "a1N8N000000QgUtUAK", + "salesforce_order_stripe_coupon_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/a1N8N000000QgUtUAK" + }, + "name": "$10 off coupon", + "percent_off": null, + "redeem_by": null, + "times_redeemed": 0, + "valid": true + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N8N000000QgUtUAK + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"Or2J6Fp4"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:13:03 GMT + Set-Cookie: + - BrowserId=pavNJ2xPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:03 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=476/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R8N000000vglGUAQ + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"Or2J6Fp4"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:13:03 GMT + Set-Cookie: + - BrowserId=pc7lWmxPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:03 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=479/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgcQAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:03 GMT + Set-Cookie: + - BrowserId=pfOrx2xPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:03 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=477/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:46 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgcQAG"},"Id":"a0v8N000002TJgcQAG","IsDeleted":false,"Name":"QL-0000576","CreatedDate":"2023-10-16T18:12:46.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:46.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:46.000+0000","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihsUAA","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2024-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MPQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNuQAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479963671","SBQQ__SegmentLabel__c":"Year 1","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2024-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgdQAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:04 GMT + Set-Cookie: + - BrowserId=piBgumxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:04 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=473/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:46 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJgdQAG"},"Id":"a0v8N000002TJgdQAG","IsDeleted":false,"Name":"QL-0000577","CreatedDate":"2023-10-16T18:12:46.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:46.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:46.000+0000","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihsUAA","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2025-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MPQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNuQAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479963671","SBQQ__SegmentLabel__c":"Year 2","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2024-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2025-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2024-10-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/subscription_schedules + body: + encoding: UTF-8 + string: end_behavior=cancel&metadata[salesforce_order_id]=8018N00000032c9QAA&metadata[salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032c9QAA&start_date=1697414400&customer=cus_OpaSOGUPDGceHz&phases[0][items][0][price]=price_1O1vHjIsgf92XbAOB8BTPrpR&phases[0][items][0][metadata][salesforce_order_item_id]=8028N0000005p2uQAA&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2uQAA&phases[0][items][0][discounts][0][coupon]=pfppvX9X&phases[0][items][0][quantity]=1&phases[0][end_date]=1729036800&phases[0][metadata][salesforce_order_id]=8018N00000032c9QAA&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032c9QAA&phases[0][metadata][salesforce_segment_key]=1697479963671&phases[0][metadata][salesforce_segment_label]=Year++1&phases[0][discounts][0][coupon]=Or2J6Fp4&phases[1][items][0][price]=price_1O1vHhIsgf92XbAOHFz4s27G&phases[1][items][0][metadata][salesforce_order_item_id]=8028N0000005p2tQAA&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2tQAA&phases[1][items][0][quantity]=1&phases[1][end_date]=1760572800&phases[1][metadata][salesforce_order_id]=8018N00000032c9QAA&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032c9QAA&phases[1][metadata][salesforce_segment_key]=1697479963671&phases[1][metadata][salesforce_segment_label]=Year++2&phases[1][discounts][0][coupon]=Or2J6Fp4 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_05ncAY4sfdi9Uq","request_duration_ms":244}}' + Idempotency-Key: + - 47634e12-7f08-4907-a03a-631df6eb2461 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:13:04 GMT + Content-Type: + - application/json + Content-Length: + - '4199' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 47634e12-7f08-4907-a03a-631df6eb2461 + Original-Request: + - req_097rzaJEna8X2s + Request-Id: + - req_097rzaJEna8X2s + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vHoIsgf92XbAOQH0vVSk2", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479984, + "current_phase": { + "end_date": 1729036800, + "start_date": 1697414400 + }, + "customer": "cus_OpaSOGUPDGceHz", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": "Or2J6Fp4", + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [ + { + "coupon": "Or2J6Fp4", + "discount": null + } + ], + "end_date": 1729036800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [ + { + "coupon": "pfppvX9X", + "discount": null + } + ], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2uQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2uQAA" + }, + "plan": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "price": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA", + "salesforce_segment_key": "1697479963671", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1697414400, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": "Or2J6Fp4", + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [ + { + "coupon": "Or2J6Fp4", + "discount": null + } + ], + "end_date": 1760572800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2tQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2tQAA" + }, + "plan": "price_1O1vHhIsgf92XbAOHFz4s27G", + "price": "price_1O1vHhIsgf92XbAOHFz4s27G", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA", + "salesforce_segment_key": "1697479963671", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1729036800, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1O1vHoIsgf92XbAOYCph6l9H", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c9QAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"sub_sched_1O1vHoIsgf92XbAOQH0vVSk2"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:13:04 GMT + Set-Cookie: + - BrowserId=prLdPmxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:05 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=491/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8018N00000032c9QAA-8018N00000032c9QAA + body: + encoding: UTF-8 + string: '{"Primary_Record_ID__c":"8018N00000032c9QAA","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8018N00000032c9QAA","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1O1vHoIsgf92XbAOQH0vVSk2","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_097rzaJEna8X2s"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:13:05 GMT + Set-Cookie: + - BrowserId=puWslGxPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:05 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=481/5000000 + Location: + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OE2sUAG" + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"id":"a1W8N000000OE2sUAG","success":true,"errors":[],"created":true}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1O1vHoIsgf92XbAOQH0vVSk2?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_mXHgAa7VxAzIq3","request_duration_ms":245}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:13:05 GMT + Content-Type: + - application/json + Content-Length: + - '6431' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_NOY5akSjEXrO0d + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vHoIsgf92XbAOQH0vVSk2", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479984, + "current_phase": { + "end_date": 1729036800, + "start_date": 1697414400 + }, + "customer": "cus_OpaSOGUPDGceHz", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": "Or2J6Fp4", + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [ + { + "coupon": "Or2J6Fp4", + "discount": null + } + ], + "end_date": 1729036800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [ + { + "coupon": "pfppvX9X", + "discount": null + } + ], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2uQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2uQAA" + }, + "plan": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "price": { + "id": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479979, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2uQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2uQAA" + }, + "nickname": null, + "product": "prod_OpaSBfv1a9axIl", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA", + "salesforce_segment_key": "1697479963671", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1697414400, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": "Or2J6Fp4", + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [ + { + "coupon": "Or2J6Fp4", + "discount": null + } + ], + "end_date": 1760572800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2tQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2tQAA" + }, + "plan": "price_1O1vHhIsgf92XbAOHFz4s27G", + "price": { + "id": "price_1O1vHhIsgf92XbAOHFz4s27G", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479977, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2tQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2tQAA" + }, + "nickname": null, + "product": "prod_OpaSBfv1a9axIl", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA", + "salesforce_segment_key": "1697479963671", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1729036800, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1O1vHoIsgf92XbAOYCph6l9H", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vHjIsgf92XbAOB8BTPrpR + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_NOY5akSjEXrO0d","request_duration_ms":216}}' + Idempotency-Key: + - 725e1da9-c66d-454e-b8e2-dd1d775f3e76 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:13:05 GMT + Content-Type: + - application/json + Content-Length: + - '849' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 725e1da9-c66d-454e-b8e2-dd1d775f3e76 + Original-Request: + - req_tgdNeSjWcQIc0j + Request-Id: + - req_tgdNeSjWcQIc0j + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479979, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2uQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2uQAA" + }, + "nickname": null, + "product": "prod_OpaSBfv1a9axIl", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vHhIsgf92XbAOHFz4s27G + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_tgdNeSjWcQIc0j","request_duration_ms":290}}' + Idempotency-Key: + - 150a3721-faa3-4cf9-a8b1-c3eca0cdfdca + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:13:06 GMT + Content-Type: + - application/json + Content-Length: + - '849' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 150a3721-faa3-4cf9-a8b1-c3eca0cdfdca + Original-Request: + - req_fxU4jQGF28q7EQ + Request-Id: + - req_fxU4jQGF28q7EQ + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vHhIsgf92XbAOHFz4s27G", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479977, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2tQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2tQAA" + }, + "nickname": null, + "product": "prod_OpaSBfv1a9axIl", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032c9QAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:06 GMT + Set-Cookie: + - BrowserId=p4kZImxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:06 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=510/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:13:05 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032c9QAA"},"Id":"8018N00000032c9QAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPIRQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRvQAO","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:12:52.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000306","TotalAmount":2880.0,"CreatedDate":"2023-10-16T18:12:50.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:13:05.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:13:05.000+0000","LastViewedDate":"2023-10-16T18:13:05.000+0000","LastReferencedDate":"2023-10-16T18:13:05.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBcLQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1O1vHoIsgf92XbAOQH0vVSk2","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1O1vHoIsgf92XbAOQH0vVSk2"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1O1vHoIsgf92XbAOQH0vVSk2 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_fxU4jQGF28q7EQ","request_duration_ms":273}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:13:06 GMT + Content-Type: + - application/json + Content-Length: + - '4199' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_xs9cZsgY48692E + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vHoIsgf92XbAOQH0vVSk2", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479984, + "current_phase": { + "end_date": 1729036800, + "start_date": 1697414400 + }, + "customer": "cus_OpaSOGUPDGceHz", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": "Or2J6Fp4", + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [ + { + "coupon": "Or2J6Fp4", + "discount": null + } + ], + "end_date": 1729036800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [ + { + "coupon": "pfppvX9X", + "discount": null + } + ], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2uQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2uQAA" + }, + "plan": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "price": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA", + "salesforce_segment_key": "1697479963671", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1697414400, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": "Or2J6Fp4", + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [ + { + "coupon": "Or2J6Fp4", + "discount": null + } + ], + "end_date": 1760572800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2tQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2tQAA" + }, + "plan": "price_1O1vHhIsgf92XbAOHFz4s27G", + "price": "price_1O1vHhIsgf92XbAOHFz4s27G", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA", + "salesforce_segment_key": "1697479963671", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1729036800, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1O1vHoIsgf92XbAOYCph6l9H", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/coupons/pfppvX9X + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_xs9cZsgY48692E","request_duration_ms":216}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:13:06 GMT + Content-Type: + - application/json + Content-Length: + - '547' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_Y66TizTC5G7onQ + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pfppvX9X", + "object": "coupon", + "amount_off": null, + "created": 1697479980, + "currency": null, + "duration": "once", + "duration_in_months": null, + "livemode": false, + "max_redemptions": null, + "metadata": { + "salesforce_order_stripe_coupon_id": "a1N8N000000QgUuUAK", + "salesforce_order_stripe_coupon_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/a1N8N000000QgUuUAK" + }, + "name": "Twenty-five percent off coupon", + "percent_off": 25.0, + "redeem_by": null, + "times_redeemed": 1, + "valid": true + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0018N00000JbPIRQA3 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:13:06 GMT + Set-Cookie: + - BrowserId=p-NuE2xPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:13:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:13:06 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=507/5000000 + Etag: + - '"G1Nv+Sb4ET8yi4FNWG9QT/ZcEmJXKJ6PxWEsxnJOmzw=--gzip"' + Last-Modified: + - Mon, 16 Oct 2023 18:12:55 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0018N00000JbPIRQA3"},"Id":"0018N00000JbPIRQA3","IsDeleted":false,"MasterRecordId":null,"Name":"REST + Account 2023-10-16 00:00:00 UTC","Type":null,"ParentId":null,"BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Phone":null,"Fax":null,"AccountNumber":null,"Website":null,"PhotoUrl":"/services/images/photo/0018N00000JbPIRQA3","Sic":null,"Industry":null,"AnnualRevenue":null,"NumberOfEmployees":null,"Ownership":null,"TickerSymbol":null,"Description":null,"Rating":null,"Site":null,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:12:39.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:55.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:55.000+0000","LastActivityDate":null,"LastViewedDate":"2023-10-16T18:12:55.000+0000","LastReferencedDate":"2023-10-16T18:12:55.000+0000","Jigsaw":null,"JigsawCompanyId":null,"CleanStatus":"Pending","AccountSource":null,"DunsNumber":null,"Tradestyle":null,"NaicsCode":null,"NaicsDesc":null,"YearStarted":null,"SicDesc":null,"DandbCompanyId":null,"OperatingHoursId":null,"CustomerPriority__c":null,"SLA__c":null,"Active__c":null,"NumberofLocations__c":null,"UpsellOpportunity__c":null,"SLASerialNumber__c":null,"SLAExpirationDate__c":null,"SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__DefaultOpportunity__c":null,"SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__PriceHoldEnd__c":null,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","SBQQ__CoTerminationEvent__c":null,"Stripe_ID__c":"cus_OpaSOGUPDGceHz","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OpaSOGUPDGceHz"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/invoices?customer=cus_OpaSOGUPDGceHz + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_Y66TizTC5G7onQ","request_duration_ms":196}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:13:07 GMT + Content-Type: + - application/json + Content-Length: + - '8148' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Finvoices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_fZnjgPVttpAGiI + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "object": "list", + "data": [ + { + "id": "in_1O1vHoIsgf92XbAO1TYWHByz", + "object": "invoice", + "account_country": "US", + "account_name": "StripeForce Demo Account ", + "account_tax_ids": null, + "amount_due": 107000, + "amount_paid": 0, + "amount_remaining": 107000, + "amount_shipping": 0, + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "application_fee_amount": null, + "attempt_count": 0, + "attempted": false, + "auto_advance": true, + "automatic_tax": { + "enabled": false, + "status": null + }, + "billing_reason": "subscription_create", + "charge": null, + "collection_method": "charge_automatically", + "created": 1697479984, + "currency": "usd", + "custom_fields": null, + "customer": "cus_OpaSOGUPDGceHz", + "customer_address": null, + "customer_email": null, + "customer_name": "REST Account 2023-10-16 00:00:00 UTC", + "customer_phone": null, + "customer_shipping": null, + "customer_tax_exempt": "none", + "customer_tax_ids": [], + "default_payment_method": null, + "default_source": null, + "default_tax_rates": [], + "description": null, + "discount": { + "id": "di_1O1vHoIsgf92XbAODqY2cguE", + "object": "discount", + "checkout_session": null, + "coupon": { + "id": "Or2J6Fp4", + "object": "coupon", + "amount_off": 1000, + "created": 1697479983, + "currency": "usd", + "duration": "once", + "duration_in_months": null, + "livemode": false, + "max_redemptions": null, + "metadata": { + "salesforce_order_stripe_coupon_id": "a1N8N000000QgUtUAK", + "salesforce_order_stripe_coupon_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/a1N8N000000QgUtUAK" + }, + "name": "$10 off coupon", + "percent_off": null, + "redeem_by": null, + "times_redeemed": 1, + "valid": true + }, + "customer": "cus_OpaSOGUPDGceHz", + "end": null, + "invoice": null, + "invoice_item": null, + "promotion_code": null, + "start": 1697414400, + "subscription": "sub_1O1vHoIsgf92XbAOYCph6l9H", + "subscription_item": null + }, + "discounts": [ + "di_1O1vHoIsgf92XbAODqY2cguE" + ], + "due_date": null, + "effective_at": null, + "ending_balance": null, + "footer": null, + "from_invoice": null, + "hosted_invoice_url": null, + "invoice_pdf": null, + "last_finalization_error": null, + "latest_revision": null, + "lines": { + "object": "list", + "data": [ + { + "id": "il_1O1vHoIsgf92XbAOwQ1VtwFR", + "object": "line_item", + "amount": 107000, + "amount_excluding_tax": 107000, + "currency": "usd", + "description": "Time on REST Product2 2023-10-16 00:00:00 UTC (with discounts) from 16 Oct 2023 until 16 Nov 2023", + "discount_amounts": [ + { + "amount": 0, + "discount": "di_1O1vHoIsgf92XbAODqY2cguE" + } + ], + "discountable": false, + "discounts": [], + "invoice_item": "ii_1O1vHoIsgf92XbAOG6eJ0sjw", + "livemode": false, + "metadata": {}, + "period": { + "end": 1700092800, + "start": 1697414400 + }, + "plan": { + "id": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "object": "plan", + "active": false, + "aggregate_usage": null, + "amount": 144000, + "amount_decimal": "144000", + "billing_scheme": "per_unit", + "created": 1697479979, + "currency": "usd", + "interval": "month", + "interval_count": 1, + "livemode": false, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2uQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2uQAA" + }, + "nickname": null, + "product": "prod_OpaSBfv1a9axIl", + "tiers_mode": null, + "transform_usage": null, + "trial_period_days": null, + "usage_type": "licensed" + }, + "price": { + "id": "price_1O1vHjIsgf92XbAOB8BTPrpR", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479979, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2uQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2uQAA" + }, + "nickname": null, + "product": "prod_OpaSBfv1a9axIl", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "proration": true, + "proration_details": { + "credited_items": null + }, + "quantity": 1, + "rendering": null, + "subscription": "sub_1O1vHoIsgf92XbAOYCph6l9H", + "subscription_item": "si_OpaSrVMJ8pFwVt", + "tax_amounts": [], + "tax_rates": [], + "type": "invoiceitem", + "unit_amount_excluding_tax": "107000" + } + ], + "has_more": false, + "total_count": 1, + "url": "/v1/invoices/in_1O1vHoIsgf92XbAO1TYWHByz/lines" + }, + "livemode": false, + "metadata": {}, + "next_payment_attempt": 1697483584, + "number": null, + "on_behalf_of": null, + "paid": false, + "paid_out_of_band": false, + "payment_intent": null, + "payment_settings": { + "default_mandate": null, + "payment_method_options": null, + "payment_method_types": null + }, + "period_end": 1697479984, + "period_start": 1697479984, + "post_payment_credit_notes_amount": 0, + "pre_payment_credit_notes_amount": 0, + "quote": null, + "receipt_number": null, + "rendering": null, + "rendering_options": null, + "shipping_cost": null, + "shipping_details": null, + "starting_balance": 0, + "statement_descriptor": null, + "status": "draft", + "status_transitions": { + "finalized_at": null, + "marked_uncollectible_at": null, + "paid_at": null, + "voided_at": null + }, + "subscription": "sub_1O1vHoIsgf92XbAOYCph6l9H", + "subscription_details": { + "metadata": { + "salesforce_order_id": "8018N00000032c9QAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032c9QAA", + "salesforce_segment_key": "1697479963671", + "salesforce_segment_label": "Year 1" + } + }, + "subtotal": 107000, + "subtotal_excluding_tax": 107000, + "tax": null, + "test_clock": null, + "total": 107000, + "total_discount_amounts": [ + { + "amount": 0, + "discount": "di_1O1vHoIsgf92XbAODqY2cguE" + } + ], + "total_excluding_tax": 107000, + "total_tax_amounts": [], + "transfer_data": null, + "webhooks_delivered_at": 1697479984 + } + ], + "has_more": false, + "url": "/v1/invoices" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_prebilling_and_mdq_products.yml b/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_prebilling_and_mdq_products.yml new file mode 100644 index 0000000000..c89a5b62e0 --- /dev/null +++ b/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_prebilling_and_mdq_products.yml @@ -0,0 +1,5446 @@ +--- +http_interactions: +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account + body: + encoding: UTF-8 + string: '{"Name":"REST Account 2023-10-16 00:00:00 UTC"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:50 GMT + Set-Cookie: + - BrowserId=ehnujWxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:50 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=399/5000000 + Location: + - "/services/data/v58.0/sobjects/Account/0018N00000JbPICQA3" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0018N00000JbPICQA3","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:50 GMT + Set-Cookie: + - BrowserId=elCPg2xPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:50 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=395/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + body: + encoding: UTF-8 + string: '{"Name":"REST Opportunity 2023-10-16 00:00:00 UTC","CloseDate":"2023-10-16","StageName":"Closed/Won","AccountId":"0018N00000JbPICQA3"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:50 GMT + Set-Cookie: + - BrowserId=emluR2xPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:50 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=397/5000000 + Location: + - "/services/data/v58.0/sobjects/Opportunity/0068N000006QZRbQAO" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0068N000006QZRbQAO","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + body: + encoding: UTF-8 + string: '{"LastName":"Bianco","Email":"order_with_mdq_licensed_product_and_prebilling_1@example.com"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:51 GMT + Set-Cookie: + - BrowserId=eqbF3WxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:51 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=396/5000000 + Location: + - "/services/data/v58.0/sobjects/Contact/0038N00000GH2wiQAD" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0038N00000GH2wiQAD","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c + body: + encoding: UTF-8 + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0068N000006QZRbQAO","SBQQ__PrimaryContact__c":"0038N00000GH2wiQAD","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__StartDate__c":"2024-01-16","SBQQ__SubscriptionTerm__c":24}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:51 GMT + Set-Cookie: + - BrowserId=etTaKGxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:51 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=395/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0z8N000000zBcBQAU","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + body: + encoding: UTF-8 + string: '{"Name":"REST Product2 2023-10-16 00:00:00 UTC","IsActive":true,"Description":"A + great description","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__SubscriptionTerm__c":null,"SBQQ__BillingFrequency__c":"Quarterly"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:52 GMT + Set-Cookie: + - BrowserId=e1BMRWxPEe6eVoH0UjEKMA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=392/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t8N000003DfNkQAK" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t8N000003DfNkQAK","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:52 GMT + Set-Cookie: + - BrowserId=e4c6YGxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=400/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + body: + encoding: UTF-8 + string: '{"Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNkQAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:52 GMT + Set-Cookie: + - BrowserId=e599UmxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=395/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003e0MFQAY" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u8N000003e0MFQAY","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Dimension__c + body: + encoding: UTF-8 + string: '{"Name":"Yearly Ramp","SBQQ__Type__c":"Year","SBQQ__Product__c":"01t8N000003DfNkQAK"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:52 GMT + Set-Cookie: + - BrowserId=e8KVSGxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=394/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0D8N000004nihdUAA","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:53 GMT + Set-Cookie: + - BrowserId=e_c58GxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:53 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=397/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z8N000000zBcBQAU + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:53 GMT + Set-Cookie: + - BrowserId=fBJjD2xPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:53 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU\"},\"Id\":\"a0z8N000000zBcBQAU\",\"Name\":\"Q-00251\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPICQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRbQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPICQA3\"},\"Id\":\"0018N00000JbPICQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRbQAO\"},\"Id\":\"0068N000006QZRbQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcBQAU\",\"AccountId\":\"0018N00000JbPICQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t8N000003DfNkQAK + body: + encoding: UTF-8 + string: '{"context":"{\"pricebookId\":\"01s8N000002d0dzQAA\"}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:54 GMT + Set-Cookie: + - BrowserId=fIWXu2xPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:54 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"Id\":\"a0D8N000004nihdUAA\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:53.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:53.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:53.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MFQAY\"},\"Product2Id\":\"01t8N000003DfNkQAK\",\"Id\":\"01u8N000003e0MFQAY\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU\"},\"Id\":\"a0z8N000000zBcBQAU\",\"Name\":\"Q-00251\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPICQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRbQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPICQA3\"},\"Id\":\"0018N00000JbPICQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRbQAO\"},\"Id\":\"0068N000006QZRbQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcBQAU\",\"AccountId\":\"0018N00000JbPICQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"Id\":\"a0D8N000004nihdUAA\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:53.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:53.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:53.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MFQAY\"},\"Product2Id\":\"01t8N000003DfNkQAK\",\"Id\":\"01u8N000003e0MFQAY\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:54 GMT + Set-Cookie: + - BrowserId=fN6M82xPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:54 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU\"},\"Id\":\"a0z8N000000zBcBQAU\",\"Name\":\"Q-00251\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPICQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRbQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPICQA3\"},\"Id\":\"0018N00000JbPICQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRbQAO\"},\"Id\":\"0068N000006QZRbQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcBQAU\",\"AccountId\":\"0018N00000JbPICQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":240.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-01-15\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000557\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":120.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":120.00,\"SBQQ__NetTotal__c\":120.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":120.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":120.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":120.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":120.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-01-16\",\"effectiveEndDate\":\"2025-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2026-01-15\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000558\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":120.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":120.00,\"SBQQ__NetTotal__c\":120.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":120.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":120.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2025-01-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":120.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":120.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-01-16\",\"effectiveEndDate\":\"2026-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU\"},\"Id\":\"a0z8N000000zBcBQAU\",\"Name\":\"Q-00251\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPICQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRbQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPICQA3\"},\"Id\":\"0018N00000JbPICQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRbQAO\"},\"Id\":\"0068N000006QZRbQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcBQAU\",\"AccountId\":\"0018N00000JbPICQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":240.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-01-15\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000557\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":120.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":120.0,\"SBQQ__NetTotal__c\":120.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":120.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":120.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":120.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":120.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-01-16\",\"effectiveEndDate\":\"2025-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2026-01-15\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000558\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":120.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":120.0,\"SBQQ__NetTotal__c\":120.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":120.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":120.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2025-01-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":120.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":120.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-01-16\",\"effectiveEndDate\":\"2026-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:56 GMT + Set-Cookie: + - BrowserId=fbD4VWxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:56 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU\"},\"Id\":\"a0z8N000000zBcBQAU\",\"Name\":\"Q-00251\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPICQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__NetAmount__c\":240.00,\"SBQQ__CustomerAmount__c\":240.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRbQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPICQA3\"},\"Id\":\"0018N00000JbPICQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRbQAO\"},\"Id\":\"0068N000006QZRbQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcBQAU\",\"AccountId\":\"0018N00000JbPICQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":240.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-01-15\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000559\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":120.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":120.00,\"SBQQ__NetTotal__c\":120.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":120.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":120.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":120.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":120.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-01-16\",\"effectiveEndDate\":\"2025-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2026-01-15\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000560\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":120.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":120.00,\"SBQQ__NetTotal__c\":120.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":120.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":120.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2025-01-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":120.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":120.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-01-16\",\"effectiveEndDate\":\"2026-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + body: + encoding: UTF-8 + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU\"},\"Id\":\"a0z8N000000zBcBQAU\",\"Name\":\"Q-00251\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPICQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRbQAO\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPICQA3\"},\"Id\":\"0018N00000JbPICQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRbQAO\"},\"Id\":\"0068N000006QZRbQAO\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcBQAU\",\"AccountId\":\"0018N00000JbPICQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":240.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-01-15\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000559\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":120.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":120.0,\"SBQQ__NetTotal__c\":120.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":120.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":120.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":120.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":120.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-01-16\",\"effectiveEndDate\":\"2025-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2026-01-15\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"Name\":\"QL-0000560\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":120.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":120.0,\"SBQQ__NetTotal__c\":120.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":120.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":120.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2025-01-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":120.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":120.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"Id\":\"01t8N000003DfNkQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-01-16\",\"effectiveEndDate\":\"2026-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:57 GMT + Set-Cookie: + - BrowserId=fm1qKmxPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:57 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:57 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:57 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":240.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":240.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRbQAO\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBcBQAU\",\"AccountId\":\"0018N00000JbPICQA3\",\"Id\":\"0068N000006QZRbQAO\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPICQA3\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JbPICQA3\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-10-16 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00251\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":24.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0018N00000JbPICQA3\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0068N000006QZRbQAO\",\"SBQQ__LineItemCount__c\":2.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z8N000000zBcBQAU\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":3,\"netTotal\":240.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJg8QAG\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":1.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__ProratedListPrice__c\":120.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":120.0,\"Id\":\"a0v8N000002TJg8QAG\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":120.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2025-01-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":120.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":1.0,\"Name\":\"QL-0000559\",\"SBQQ__CustomerPrice__c\":120.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":120.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2024-01-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":120.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNkQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-01-16\",\"effectiveEndDate\":\"2025-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBcBQAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJg9QAG\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":2.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBcBQAU\",\"SBQQ__ProratedListPrice__c\":120.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":120.0,\"Id\":\"a0v8N000002TJg9QAG\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":120.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihdUAA\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2026-01-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihdUAA\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihdUAA\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479915211\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":120.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":1.0,\"Name\":\"QL-0000560\",\"SBQQ__CustomerPrice__c\":120.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":120.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2025-01-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MFQAY\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":120.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK\"},\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNkQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Quarterly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNkQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2025-01-16\",\"effectiveEndDate\":\"2026-01-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":240.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU + body: + encoding: UTF-8 + string: '{"SBQQ__Ordered__c":true}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:58 GMT + Set-Cookie: + - BrowserId=ftg5_mxPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:58 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=400/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU/SBQQ__Orders__r + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:59 GMT + Set-Cookie: + - BrowserId=f-y2-2xPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:59 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=410/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8018N00000032bzQAA"},"Id":"8018N00000032bzQAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPICQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRbQAO","EffectiveDate":"2024-01-16","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00000304","TotalAmount":240.0,"CreatedDate":"2023-10-16T18:11:58.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:11:59.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z8N000000zBcBQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032bzQAA + body: + encoding: UTF-8 + string: '{"Status":"Activated"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:00 GMT + Set-Cookie: + - BrowserId=gA5JQ2xPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:00 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=414/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032bzQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:00 GMT + Set-Cookie: + - BrowserId=gIzH-GxPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:00 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=407/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:00 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032bzQAA"},"Id":"8018N00000032bzQAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPICQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRbQAO","EffectiveDate":"2024-01-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:12:00.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000304","TotalAmount":240.0,"CreatedDate":"2023-10-16T18:11:58.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:00.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:00.000+0000","LastViewedDate":"2023-10-16T18:12:00.000+0000","LastReferencedDate":"2023-10-16T18:12:00.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBcBQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032bzQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:01 GMT + Set-Cookie: + - BrowserId=gKqJjmxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:01 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=413/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:00 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032bzQAA"},"Id":"8018N00000032bzQAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPICQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRbQAO","EffectiveDate":"2024-01-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:12:00.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000304","TotalAmount":240.0,"CreatedDate":"2023-10-16T18:11:58.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:00.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:00.000+0000","LastViewedDate":"2023-10-16T18:12:01.000+0000","LastReferencedDate":"2023-10-16T18:12:01.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBcBQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + body: + encoding: UTF-8 + string: '{"order_ids":["8018N00000032bzQAA"]}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:01 GMT + Set-Cookie: + - BrowserId=gMhxC2xPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:01 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0038N00000GH2wiQAD"},"Id":"0038N00000GH2wiQAD","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"order_with_mdq_licensed_product_and_prebilling_1@example.com","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:51.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:51.000+0000","LastViewedDate":"2023-10-16T18:11:51.000+0000","LastReferencedDate":"2023-10-16T18:11:51.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0038N00000GH2wiQAD","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRbQAO"},"Id":"0068N000006QZRbQAO","IsDeleted":false,"AccountId":"0018N00000JbPICQA3","IsPrivate":false,"Name":"REST + Opportunity 2023-10-16 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-10-16","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:50.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:51.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-10-16T18:11:50.000+0000","LastReferencedDate":"2023-10-16T18:11:50.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000zBcBQAU","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0018N00000JbPICQA3"},"Id":"0018N00000JbPICQA3","IsDeleted":false,"Name":"REST + Account 2023-10-16 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0018N00000JbPICQA3","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:50.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:50.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:50.000+0000","LastViewedDate":"2023-10-16T18:11:50.000+0000","LastReferencedDate":"2023-10-16T18:11:50.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["0018N00000JbPICQA3"],"Opportunities":["0068N000006QZRbQAO"],"Contacts":["0038N00000GH2wiQAD"],"SBQQ__RegularAmount__c":240.00,"SBQQ__NetAmount__c":240.00,"SBQQ__ListAmount__c":240.00,"SBQQ__CustomerAmount__c":240.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-11-15","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":2,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":true,"SBQQ__Type__c":"Quote","SBQQ__SubscriptionTerm__c":24,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-01-16","SBQQ__ShippingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0038N00000GH2wiQAD","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__PriceBook__c":"01s8N000002d0dzQAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0068N000006QZRbQAO","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-10-16T18:11:58.000+0000","SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__Account__c":"0018N00000JbPICQA3","LastReferencedDate":"2023-10-16T18:11:58.000+0000","LastViewedDate":"2023-10-16T18:11:58.000+0000","SystemModstamp":"2023-10-16T18:11:58.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:58.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:51.000+0000","Name":"Q-00251","IsDeleted":false,"OwnerId":"0058N000004zYG5QAM","Id":"a0z8N000000zBcBQAU","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBcBQAU","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t8N000003DfNkQAK"},"Id":"01t8N000003DfNkQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:11:52.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:52.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MFQAY"},"Id":"01u8N000003e0MFQAY","Name":"REST + Product2 2023-10-16 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNkQAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-10-16T18:11:52.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:52.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJg8QAG"},"Id":"a0v8N000002TJg8QAG","IsDeleted":false,"Name":"QL-0000561","CreatedDate":"2023-10-16T18:11:57.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:57.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:57.000+0000","SBQQ__Quote__c":"a0z8N000000zBcBQAU","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":120.00,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihdUAA","SBQQ__EndDate__c":"2025-01-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":120.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":120.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MFQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNkQAK","SBQQ__ProrateMultiplier__c":1.0000,"SBQQ__ProratedListPrice__c":120.00,"SBQQ__ProratedPrice__c":120.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":120.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":1,"SBQQ__SegmentKey__c":"1697479915211","SBQQ__SegmentLabel__c":"Year 1","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2024-01-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":120.00,"SBQQ__EffectiveEndDate__c":"2025-01-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-01-16","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":120.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":120.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":120.00,"SBQQ__PackageTotal__c":120.00,"SBQQ__PartnerTotal__c":120.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":120.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJg9QAG"},"Id":"a0v8N000002TJg9QAG","IsDeleted":false,"Name":"QL-0000562","CreatedDate":"2023-10-16T18:11:57.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:57.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:57.000+0000","SBQQ__Quote__c":"a0z8N000000zBcBQAU","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":120.00,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihdUAA","SBQQ__EndDate__c":"2026-01-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":120.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":120.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MFQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNkQAK","SBQQ__ProrateMultiplier__c":1.0000,"SBQQ__ProratedListPrice__c":120.00,"SBQQ__ProratedPrice__c":120.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":120.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":2,"SBQQ__SegmentKey__c":"1697479915211","SBQQ__SegmentLabel__c":"Year 2","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2025-01-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":120.00,"SBQQ__EffectiveEndDate__c":"2026-01-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2025-01-16","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":120.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":120.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":120.00,"SBQQ__PackageTotal__c":120.00,"SBQQ__PartnerTotal__c":120.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":120.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"PricebookEntries":[],"Products":["01t8N000003DfNkQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479915211","SBQQ__SegmentIndex__c":1,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJg8QAG","SBQQ__ProrateMultiplier__c":1.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihdUAA","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000214","SystemModstamp":"2023-10-16T18:12:00.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:00.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:59.000+0000","EndDate":"2025-01-15","ServiceDate":"2024-01-16","TotalPrice":120.00,"ListPrice":120.00,"UnitPrice":120.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0MFQAY","OrderId":"8018N00000032bzQAA","IsDeleted":false,"Product2Id":"01t8N000003DfNkQAK","Id":"8028N0000005p2kQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2kQAA","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t8N000003DfNkQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479915211","SBQQ__SegmentIndex__c":2,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJg9QAG","SBQQ__ProrateMultiplier__c":1.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihdUAA","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Quarterly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000213","SystemModstamp":"2023-10-16T18:12:00.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:00.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:59.000+0000","EndDate":"2026-01-15","ServiceDate":"2025-01-16","TotalPrice":120.00,"ListPrice":120.00,"UnitPrice":120.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0MFQAY","OrderId":"8018N00000032bzQAA","IsDeleted":false,"Product2Id":"01t8N000003DfNkQAK","Id":"8028N0000005p2jQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2jQAA","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-09-29T17:43:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T17:43:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T17:43:59.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s8N000002d0dzQAA"],"Opportunities":["0068N000006QZRbQAO"],"Accounts":["0018N00000JbPICQA3"],"OrderItems":["8028N0000005p2kQAA","8028N0000005p2jQAA"],"Quotes":["a0z8N000000zBcBQAU"],"Opportunity":{"Id":"0068N000006QZRbQAO","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRbQAO","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":240.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z8N000000zBcBQAU","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-10-16T18:12:01.000+0000","LastViewedDate":"2023-10-16T18:12:01.000+0000","SystemModstamp":"2023-10-16T18:12:00.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:00.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:58.000+0000","TotalAmount":240.00,"OrderNumber":"00000304","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-10-16T18:12:00.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-01-16","OpportunityId":"0068N000006QZRbQAO","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JbPICQA3","OwnerId":"0058N000004zYG5QAM","Id":"8018N00000032bzQAA","attributes":{"url":"/services/data/v59.0/sobjects/Order/8018N00000032bzQAA","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"HasOptedOutOfFax","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"DoNotCall","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ContractId","sobject_type":"Opportunity","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"IqScore","sobject_type":"Opportunity","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Primary_Contact__c","sobject_type":"Account","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingStreet","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingCity","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingState","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingPostalCode","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingCountry","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingLatitude","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingLongitude","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingGeocodeAccuracy","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingAddress","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Name","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%278018N00000032bzQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:02 GMT + Set-Cookie: + - BrowserId=gYGHv2xPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:02 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=410/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032bzQAA"},"Type":"New","OpportunityId":"0068N000006QZRbQAO","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006QZRbQAO"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278018N00000032bzQAA%27%20%20AND%20Status%20=%20%27Activated%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:02 GMT + Set-Cookie: + - BrowserId=gZ9JoWxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:02 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=415/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032bzQAA"},"Id":"8018N00000032bzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/customers + body: + encoding: UTF-8 + string: name=REST+Account++2023-10-16+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0018N00000JbPICQA3&metadata[salesforce_account_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F0018N00000JbPICQA3 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - 12bac520-7294-4236-bb08-4343045eaca0 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:03 GMT + Content-Type: + - application/json + Content-Length: + - '843' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fcustomers; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 12bac520-7294-4236-bb08-4343045eaca0 + Original-Request: + - req_DRB7FRoZT8oiFf + Request-Id: + - req_DRB7FRoZT8oiFf + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "cus_OpaRoiIoQYeuf2", + "object": "customer", + "address": null, + "balance": 0, + "created": 1697479923, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "DB9170A7", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, + "livemode": false, + "metadata": { + "salesforce_account_id": "0018N00000JbPICQA3", + "salesforce_account_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/0018N00000JbPICQA3" + }, + "name": "REST Account 2023-10-16 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0018N00000JbPICQA3 + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"cus_OpaRoiIoQYeuf2"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:03 GMT + Set-Cookie: + - BrowserId=gfuapmxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:03 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=406/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/products + body: + encoding: UTF-8 + string: name=REST+Product2++2023-10-16+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t8N000003DfNkQAK&metadata[salesforce_product2_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01t8N000003DfNkQAK + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_DRB7FRoZT8oiFf","request_duration_ms":403}}' + Idempotency-Key: + - ac3db743-fe9d-4151-9249-a01a143735c3 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:03 GMT + Content-Type: + - application/json + Content-Length: + - '761' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - ac3db743-fe9d-4151-9249-a01a143735c3 + Original-Request: + - req_NKt1hV3cjGV9SV + Request-Id: + - req_NKt1hV3cjGV9SV + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaR7y3lGd8HT0", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479923, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNkQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNkQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-10", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479923, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNkQAK + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"prod_OpaR7y3lGd8HT0"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:03 GMT + Set-Cookie: + - BrowserId=gk-tyGxPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:03 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=407/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNkQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:04 GMT + Set-Cookie: + - BrowserId=goLyKGxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=406/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNkQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:04 GMT + Set-Cookie: + - BrowserId=gp3N12xPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=408/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNkQAK + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:04 GMT + Set-Cookie: + - BrowserId=grZeNmxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=407/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:04 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000003DfNkQAK"},"Id":"01t8N000003DfNkQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:11:52.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:04.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:04.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BillingType__c":null,"SBQQ__BlockPricingField__c":"Quantity","SBQQ__ChargeType__c":null,"SBQQ__Component__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationFieldSet__c":null,"SBQQ__ConfigurationFields__c":null,"SBQQ__ConfigurationFormTitle__c":null,"SBQQ__ConfigurationType__c":null,"SBQQ__ConfigurationValidator__c":null,"SBQQ__ConfiguredCodePattern__c":null,"SBQQ__ConfiguredDescriptionPattern__c":null,"SBQQ__CostEditable__c":false,"SBQQ__CostSchedule__c":null,"SBQQ__CustomConfigurationPage__c":null,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__CustomerCommunityAvailability__c":null,"SBQQ__DefaultPricingTable__c":null,"SBQQ__DefaultQuantity__c":1.0,"SBQQ__DescriptionLocked__c":false,"SBQQ__DiscountCategory__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DynamicPricingConstraint__c":null,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionLayout__c":null,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingGuidance__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductPictureID__c":null,"SBQQ__QuantityEditable__c":true,"SBQQ__QuantityScale__c":null,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__RenewalProduct__c":null,"SBQQ__SortOrder__c":null,"SBQQ__Specifications__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_OpaR7y3lGd8HT0","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OpaR7y3lGd8HT0"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2kQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:04 GMT + Set-Cookie: + - BrowserId=gtGuumxPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=412/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2kQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:04 GMT + Set-Cookie: + - BrowserId=guoZQWxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:04 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=412/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:05 GMT + Set-Cookie: + - BrowserId=gwUbDmxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:05 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=410/5000000 + Etag: + - '"1100e741--gzip"' + Last-Modified: + - Wed, 11 Oct 2023 19:10:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"encoding":"UTF-8","maxBatchSize":200,"sobjects":[{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pp","label":"AI + Application","labelPlural":"AI Applications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplication/{ID}","describe":"/services/data/v58.0/sobjects/AIApplication/describe","sobject":"/services/data/v58.0/sobjects/AIApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6S9","label":"AI + Application config","labelPlural":"AI Application configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplicationConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplicationConfig/{ID}","describe":"/services/data/v58.0/sobjects/AIApplicationConfig/describe","sobject":"/services/data/v58.0/sobjects/AIApplicationConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qd","label":"AI + Insight Action","labelPlural":"AI Insight Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightAction/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightAction/describe","sobject":"/services/data/v58.0/sobjects/AIInsightAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9bq","label":"AI + Insight Feedback","labelPlural":"AI Insight Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightFeedback/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightFeedback/describe","sobject":"/services/data/v58.0/sobjects/AIInsightFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T2","label":"AI + Insight Reason","labelPlural":"AI Insight Reasons","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightReason","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightReason/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightReason/describe","sobject":"/services/data/v58.0/sobjects/AIInsightReason"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qc","label":"AI + Insight Value","labelPlural":"AI Insight Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightValue/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightValue/describe","sobject":"/services/data/v58.0/sobjects/AIInsightValue"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ae","label":"AI + Prediction Event","labelPlural":"AI Prediction Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIPredictionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIPredictionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AIPredictionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AIPredictionEvent/describe","sobject":"/services/data/v58.0/sobjects/AIPredictionEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qb","label":"AI + Record Insight","labelPlural":"AI Record Insights","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIRecordInsight","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIRecordInsight/{ID}","describe":"/services/data/v58.0/sobjects/AIRecordInsight/describe","sobject":"/services/data/v58.0/sobjects/AIRecordInsight"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Accepted + Event Relation","labelPlural":"Accepted Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AcceptedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AcceptedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/AcceptedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/AcceptedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"001","label":"Account","labelPlural":"Accounts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Account","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Account/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Account/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Account/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Account/listviews","describe":"/services/data/v58.0/sobjects/Account/describe","quickActions":"/services/data/v58.0/sobjects/Account/quickActions","layouts":"/services/data/v58.0/sobjects/Account/describe/layouts","sobject":"/services/data/v58.0/sobjects/Account"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Change Event","labelPlural":"Account Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CA","label":"Account + Clean Info","labelPlural":"Account Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/AccountCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/AccountCleanInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02Z","label":"Account + Contact Role","labelPlural":"Account Contact Roles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRole/{ID}","describe":"/services/data/v58.0/sobjects/AccountContactRole/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AccountContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Contact Role Change Event","labelPlural":"Account Contact Role Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Feed","labelPlural":"Account Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountFeed/{ID}","describe":"/services/data/v58.0/sobjects/AccountFeed/describe","sobject":"/services/data/v58.0/sobjects/AccountFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + History","labelPlural":"Account History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountHistory/{ID}","describe":"/services/data/v58.0/sobjects/AccountHistory/describe","sobject":"/services/data/v58.0/sobjects/AccountHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Account + Partner","labelPlural":"Account Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AccountPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AccountPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AccountPartner/{ID}","describe":"/services/data/v58.0/sobjects/AccountPartner/describe","layouts":"/services/data/v58.0/sobjects/AccountPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/AccountPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Account","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00r","label":"Account + Share","labelPlural":"Account Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountShare/{ID}","describe":"/services/data/v58.0/sobjects/AccountShare/describe","sobject":"/services/data/v58.0/sobjects/AccountShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07g","label":"Action + Link Group Template","labelPlural":"Action Link Group Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ActionLinkGroupTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07l","label":"Action + Link Template","labelPlural":"Action Link Templates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ActionLinkTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActionLinkTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H2","label":"Active + Feature License Metric","labelPlural":"Active Feature License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveFeatureLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H1","label":"Active + Permission Set License Metric","labelPlural":"Active Permission Set License + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivePermSetLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H0","label":"Active + Profile Metric","labelPlural":"Active Profile Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveProfileMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveProfileMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveProfileMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveProfileMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2fp","label":"Activity + Field History","labelPlural":"Activity Field Histories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityFieldHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Activity + History","labelPlural":"Activity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04m","label":"Additional + Directory Number","labelPlural":"Additional Directory Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AdditionalNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AdditionalNumber/{ID}","describe":"/services/data/v58.0/sobjects/AdditionalNumber/describe","sobject":"/services/data/v58.0/sobjects/AdditionalNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"130","label":"Address","labelPlural":"Addresses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Address","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Address/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Address/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Address/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Address/describe","layouts":"/services/data/v58.0/sobjects/Address/describe/layouts","sobject":"/services/data/v58.0/sobjects/Address"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Aggregate + Result","labelPlural":"Aggregate Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AggregateResult","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AggregateResult/{ID}","describe":"/services/data/v58.0/sobjects/AggregateResult/describe","sobject":"/services/data/v58.0/sobjects/AggregateResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Z7","label":"Alternative + Payment Method","labelPlural":"Alternative Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AlternativePaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/AlternativePaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethod"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AlternativePaymentMethod","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Alternative + Payment Method Share","labelPlural":"Alternative Payment Method Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AlternativePaymentMethodShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/describe","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bt","label":"Announcement","labelPlural":"Announcements","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Announcement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Announcement/{ID}","describe":"/services/data/v58.0/sobjects/Announcement/describe","sobject":"/services/data/v58.0/sobjects/Announcement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01p","label":"Apex + Class","labelPlural":"Apex Classes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApexClass","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApexClass/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApexClass/{ID}","describe":"/services/data/v58.0/sobjects/ApexClass/describe","layouts":"/services/data/v58.0/sobjects/ApexClass/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApexClass"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"099","label":"Visualforce + Component","labelPlural":"Visualforce Components","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexComponent/{ID}","describe":"/services/data/v58.0/sobjects/ApexComponent/describe","sobject":"/services/data/v58.0/sobjects/ApexComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06j","label":"Apex + Email Notification","labelPlural":"Apex Email Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexEmailNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexEmailNotification/{ID}","describe":"/services/data/v58.0/sobjects/ApexEmailNotification/describe","sobject":"/services/data/v58.0/sobjects/ApexEmailNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07L","label":"Apex + Debug Log","labelPlural":"Apex Debug Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexLog/{ID}","describe":"/services/data/v58.0/sobjects/ApexLog/describe","sobject":"/services/data/v58.0/sobjects/ApexLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"066","label":"Visualforce + Page","labelPlural":"Visualforce Pages","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexPage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPage/{ID}","describe":"/services/data/v58.0/sobjects/ApexPage/describe","sobject":"/services/data/v58.0/sobjects/ApexPage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ve","label":"Apex + Page Info","labelPlural":"Apex Pages Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexPageInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPageInfo/{ID}","describe":"/services/data/v58.0/sobjects/ApexPageInfo/describe","sobject":"/services/data/v58.0/sobjects/ApexPageInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"709","label":"Apex + Test Queue Item","labelPlural":"Apex Test Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestQueueItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestQueueItem/describe","sobject":"/services/data/v58.0/sobjects/ApexTestQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07M","label":"Apex + Test Result","labelPlural":"Apex Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05n","label":"Apex + Test Result Limit","labelPlural":"Apex Test Result Limit","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResultLimits","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResultLimits/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResultLimits/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResultLimits"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05m","label":"Apex + Test Run Result","labelPlural":"Apex Test Run Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestRunResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestRunResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestRunResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestRunResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05F","label":"Apex + Test Suite","labelPlural":"Apex Test Suites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestSuite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestSuite/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestSuite/describe","sobject":"/services/data/v58.0/sobjects/ApexTestSuite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01q","label":"Apex + Trigger","labelPlural":"Apex Triggers","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexTrigger","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTrigger/{ID}","describe":"/services/data/v58.0/sobjects/ApexTrigger/describe","sobject":"/services/data/v58.0/sobjects/ApexTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0kt","label":"Apex + Type Implementor","labelPlural":"Apex Type Implementors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTypeImplementor","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTypeImplementor/{ID}","describe":"/services/data/v58.0/sobjects/ApexTypeImplementor/describe","sobject":"/services/data/v58.0/sobjects/ApexTypeImplementor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j5","label":"API + Anomaly Event","labelPlural":"API Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ApiAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j6","label":"API + Anomaly Event Store","labelPlural":"API Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApiAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApiAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"API + Anomaly Event Store Feed","labelPlural":"API Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07t","label":"API + Event","labelPlural":"API Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEvent/{ID}","describe":"/services/data/v58.0/sobjects/ApiEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QI","label":"API + Event Stream","labelPlural":"API Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ApiEventStream/describe","sobject":"/services/data/v58.0/sobjects/ApiEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XI","label":"App + Analytics Query Request","labelPlural":"App Analytics Query Requests","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"AppAnalyticsQueryRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/{ID}","describe":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/describe","sobject":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06m","label":"App + Definition","labelPlural":"App Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AppDefinition/describe","sobject":"/services/data/v58.0/sobjects/AppDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mg","label":"App + Extension","labelPlural":"App Extensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppExtension/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppExtension/{ID}","describe":"/services/data/v58.0/sobjects/AppExtension/describe","layouts":"/services/data/v58.0/sobjects/AppExtension/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppExtension"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AppExtension","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"App + Extension Change Event","labelPlural":"App Extension Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppExtensionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AppExtensionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DS","label":"AppMenuItem","labelPlural":"AppMenuItems","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/AppMenuItem/describe","sobject":"/services/data/v58.0/sobjects/AppMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06o","label":"App + Tab Member","labelPlural":"App Tab Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppTabMember","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppTabMember/{ID}","describe":"/services/data/v58.0/sobjects/AppTabMember/describe","sobject":"/services/data/v58.0/sobjects/AppTabMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j8","label":"Application + Usage Assignment","labelPlural":"Application Usage Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppUsageAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppUsageAssignment/{ID}","describe":"/services/data/v58.0/sobjects/AppUsageAssignment/describe","layouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppUsageAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0mS","label":"Appointment + Topic Time Slot","labelPlural":"Appointment Topic Time Slots","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe","quickActions":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/quickActions","layouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Topic Time Slot History","labelPlural":"Appointment Topic Time Slot History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"52D","label":"Appointment + Bundle Aggregation Duration Downscale","labelPlural":"Appointment Bundle Aggregation + Duration Downscales","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrDurDnscale","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrDurDnscale","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Duration Downscale Feed","labelPlural":"Appointment Bundle + Aggregation Duration Downscale Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrDurDnscaleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7yi","label":"Appointment + Bundle Aggregation Policy","labelPlural":"Appointment Bundle Aggregation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Policy Feed","labelPlural":"Appointment Bundle Aggregation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Cv","label":"Appointment + Bundle Config","labelPlural":"Appointment Bundle Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleConfig","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfig/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleConfig/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleConfig/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleConfig"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Feed","labelPlural":"Appointment Bundle Config Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config History","labelPlural":"Appointment Bundle Config History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundleConfig","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Share","labelPlural":"Appointment Bundle Config Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sT","label":"Appointment + Bundle Policy","labelPlural":"Appointment Bundle Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Feed","labelPlural":"Appointment Bundle Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundlePolicy","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Share","labelPlural":"Appointment Bundle Policy Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7b0","label":"Appointment + Bundle Policy Service Territory","labelPlural":"Appointment Bundle Policy + Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicySvcTerr","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicySvcTerr","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Service Territory Feed","labelPlural":"Appointment Bundle Policy + Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicySvcTerrFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8XA","label":"Appointment + Bundle Propagation Policy","labelPlural":"Appointment Bundle Propagation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePropagatePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePropagatePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Propagation Policy Feed","labelPlural":"Appointment Bundle Propagation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePropagatePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6KP","label":"Appointment + Bundle Restriction Policy","labelPlural":"Appointment Bundle Restriction Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleRestrictPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleRestrictPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Restriction Policy Feed","labelPlural":"Appointment Bundle Restriction + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleRestrictPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lU","label":"Appointment + Bundle Sort Policy","labelPlural":"Appointment Bundle Sort Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleSortPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleSortPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Sort Policy Feed","labelPlural":"Appointment Bundle Sort Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleSortPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02i","label":"Asset","labelPlural":"Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Asset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Asset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Asset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Asset/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Asset/listviews","describe":"/services/data/v58.0/sobjects/Asset/describe","quickActions":"/services/data/v58.0/sobjects/Asset/quickActions","layouts":"/services/data/v58.0/sobjects/Asset/describe/layouts","sobject":"/services/data/v58.0/sobjects/Asset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nL","label":"Asset + Action","labelPlural":"Asset Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetAction/describe","layouts":"/services/data/v58.0/sobjects/AssetAction/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nM","label":"Asset + Action Source","labelPlural":"Asset Action Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetActionSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetActionSource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetActionSource/describe","layouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetActionSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0oV","label":"Asset + Attribute","labelPlural":"Asset Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetAttribute","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAttribute/{ID}","describe":"/services/data/v58.0/sobjects/AssetAttribute/describe","layouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAttribute"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetAttribute","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Attribute Change Event","labelPlural":"Asset Attribute Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetAttributeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Change Event","labelPlural":"Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gP","label":"Asset + Downtime Period","labelPlural":"Asset Downtime Periods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetDowntimePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriod/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe","quickActions":"/services/data/v58.0/sobjects/AssetDowntimePeriod/quickActions","layouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriod"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period Feed","labelPlural":"Asset Downtime Period Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period History","labelPlural":"Asset Downtime Period History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Feed","labelPlural":"Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + History","labelPlural":"Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1AR","label":"Asset + Relationship","labelPlural":"Asset Relationships","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetRelationship","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetRelationship/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetRelationship/describe","quickActions":"/services/data/v58.0/sobjects/AssetRelationship/quickActions","layouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetRelationship"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship Feed","labelPlural":"Asset Relationship Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship History","labelPlural":"Asset Relationship History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Asset","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"70a","label":"Asset + Share","labelPlural":"Asset Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetShare/{ID}","describe":"/services/data/v58.0/sobjects/AssetShare/describe","sobject":"/services/data/v58.0/sobjects/AssetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nK","label":"Asset + State Period","labelPlural":"Asset State Periods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetStatePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetStatePeriod/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetStatePeriod/describe","layouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetStatePeriod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Li","label":"Asset + Token Event","labelPlural":"Asset Token Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetTokenEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetTokenEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetTokenEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetTokenEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetTokenEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4xo","label":"Asset + Warranty","labelPlural":"Asset Warranties","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetWarranty","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetWarranty/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetWarranty/describe","quickActions":"/services/data/v58.0/sobjects/AssetWarranty/quickActions","layouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetWarranty"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Change Event","labelPlural":"Asset Warranty Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Feed","labelPlural":"Asset Warranty Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty History","labelPlural":"Asset Warranty History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03r","label":"Assigned + Resource","labelPlural":"Assigned Resources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssignedResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssignedResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssignedResource/describe","quickActions":"/services/data/v58.0/sobjects/AssignedResource/quickActions","layouts":"/services/data/v58.0/sobjects/AssignedResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssignedResource"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Change Event","labelPlural":"Assigned Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Feed","labelPlural":"Assigned Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssignedResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Q","label":"Assignment + Rule","labelPlural":"Assignment Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignmentRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignmentRule/{ID}","describe":"/services/data/v58.0/sobjects/AssignmentRule/describe","sobject":"/services/data/v58.0/sobjects/AssignmentRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kt","label":"Associated + Location","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated + Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex + Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async + Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async + Operation Log","labelPlural":"Async Operation Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AsyncOperationLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationLog/{ID}","describe":"/services/data/v58.0/sobjects/AsyncOperationLog/describe","layouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/AsyncOperationLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0YD","label":"Async + Operation Status","labelPlural":"Async Operation Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationStatus/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationStatus/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationStatus/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attached + Content Document","labelPlural":"Attached Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttachedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttachedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/AttachedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/AttachedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00P","label":"Attachment","labelPlural":"Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Attachment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Attachment/{ID}","describe":"/services/data/v58.0/sobjects/Attachment/describe","sobject":"/services/data/v58.0/sobjects/Attachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0tj","label":"Attribute + Definition","labelPlural":"Attribute Definitions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/AttributeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Feed","labelPlural":"Attribute Definition Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition History","labelPlural":"Attribute Definition History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Share","labelPlural":"Attribute Definition Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v5","label":"Attribute + Picklist","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute + Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning + Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura + Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle + Info","labelPlural":"AuraDefinitionBundle Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundleInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ad","label":"AuraDefinition + Info","labelPlural":"AuraDefinition Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07T","label":"Authentication + Configuration","labelPlural":"Authentication Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfig/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfig/describe","sobject":"/services/data/v58.0/sobjects/AuthConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07U","label":"Authentication + Configuration Auth. Provider","labelPlural":"Authentication Configuration + Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfigProviders","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfigProviders/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfigProviders/describe","sobject":"/services/data/v58.0/sobjects/AuthConfigProviders"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SO","label":"Auth. + Provider","labelPlural":"Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthProvider/{ID}","describe":"/services/data/v58.0/sobjects/AuthProvider/describe","sobject":"/services/data/v58.0/sobjects/AuthProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ak","label":"Auth + Session","labelPlural":"Auth Sessions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthSession","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthSession/{ID}","describe":"/services/data/v58.0/sobjects/AuthSession/describe","sobject":"/services/data/v58.0/sobjects/AuthSession"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cI","label":"Authorization + Form","labelPlural":"Authorization Forms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationForm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationForm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationForm/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationForm/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationForm"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cK","label":"Authorization + Form Consent","labelPlural":"Authorization Form Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormConsent/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Change Event","labelPlural":"Authorization Form Consent Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent History","labelPlural":"Authorization Form Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Share","labelPlural":"Authorization Form Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cM","label":"Authorization + Form Data Use","labelPlural":"Authorization Form Data Uses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormDataUse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUse"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormDataUse","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use History","labelPlural":"Authorization Form Data Use History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormDataUse","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use Share","labelPlural":"Authorization Form Data Use Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationForm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form History","labelPlural":"Authorization Form History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationForm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Share","labelPlural":"Authorization Form Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cN","label":"Authorization + Form Text","labelPlural":"Authorization Form Texts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormText/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormText/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormText/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormText"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text Feed","labelPlural":"Authorization Form Text Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text History","labelPlural":"Authorization Form Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08P","label":"Background + Operation","labelPlural":"Background Operations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"BackgroundOperation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BackgroundOperation/{ID}","describe":"/services/data/v58.0/sobjects/BackgroundOperation/describe","layouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/layouts","sobject":"/services/data/v58.0/sobjects/BackgroundOperation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QQ","label":"Batch + Apex Error Platform Event","labelPlural":"Batch Apex Error Platform Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BatchApexErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BatchApexErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BatchApexErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BatchApexErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/BatchApexErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"016","label":"Letterhead","labelPlural":"Letterheads","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandTemplate/{ID}","describe":"/services/data/v58.0/sobjects/BrandTemplate/describe","sobject":"/services/data/v58.0/sobjects/BrandTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lw","label":"Branding + Set","labelPlural":"Branding Sets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSet/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSet/describe","sobject":"/services/data/v58.0/sobjects/BrandingSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ly","label":"Branding + Set Property","labelPlural":"Branding Set Properties","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSetProperty","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSetProperty/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSetProperty/describe","sobject":"/services/data/v58.0/sobjects/BrandingSetProperty"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5LH","label":"Briefcase + Assignment","labelPlural":"Briefcase Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignment/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseAssignment/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseAssignment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Assignment Change Event","labelPlural":"Briefcase Assignment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rY","label":"Briefcase + Definition","labelPlural":"Briefcase Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinition/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseDefinition/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinition"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Definition Change Event","labelPlural":"Briefcase Definition Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinitionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rX","label":"Briefcase + Rule","labelPlural":"Briefcase Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRule/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRule/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rZ","label":"Briefcase + Rule Filter","labelPlural":"Briefcase Rule Filters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRuleFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRuleFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hx","label":"Bulk + API Result Event","labelPlural":"Bulk API Result Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BulkApiResultEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BulkApiResultEvent/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hJ","label":"Bulk + API Result Event Store","labelPlural":"Bulk API Result Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEventStore/{ID}","describe":"/services/data/v58.0/sobjects/BulkApiResultEventStore/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1BU","label":"Business + Brand","labelPlural":"Business Brands","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessBrand","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessBrand/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/BusinessBrand/describe","layouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessBrand"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"BusinessBrand","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Business + Brand Share","labelPlural":"Business Brand Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessBrandShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessBrandShare/{ID}","describe":"/services/data/v58.0/sobjects/BusinessBrandShare/describe","sobject":"/services/data/v58.0/sobjects/BusinessBrandShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01m","label":"Business + Hours","labelPlural":"Business Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessHours/{ID}","describe":"/services/data/v58.0/sobjects/BusinessHours/describe","layouts":"/services/data/v58.0/sobjects/BusinessHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessHours"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"019","label":"Business + Process","labelPlural":"Business Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessProcess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessProcess/{ID}","describe":"/services/data/v58.0/sobjects/BusinessProcess/describe","sobject":"/services/data/v58.0/sobjects/BusinessProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"023","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Calendar","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Calendar/{ID}","describe":"/services/data/v58.0/sobjects/Calendar/describe","sobject":"/services/data/v58.0/sobjects/Calendar"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03A","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarView","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarView/{ID}","describe":"/services/data/v58.0/sobjects/CalendarView/describe","sobject":"/services/data/v58.0/sobjects/CalendarView"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CalendarView","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Calendar + Share","labelPlural":"Calendar Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarViewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarViewShare/{ID}","describe":"/services/data/v58.0/sobjects/CalendarViewShare/describe","sobject":"/services/data/v58.0/sobjects/CalendarViewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04v","label":"Call + Center","labelPlural":"Call Centers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCenter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCenter/{ID}","describe":"/services/data/v58.0/sobjects/CallCenter/describe","sobject":"/services/data/v58.0/sobjects/CallCenter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hn","label":"CallCoachingMediaProvider","labelPlural":"CallCoachingMediaProviders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCoachingMediaProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/{ID}","describe":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/describe","sobject":"/services/data/v58.0/sobjects/CallCoachingMediaProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"701","label":"Campaign","labelPlural":"Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Campaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Campaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Campaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Campaign/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Campaign/listviews","describe":"/services/data/v58.0/sobjects/Campaign/describe","quickActions":"/services/data/v58.0/sobjects/Campaign/quickActions","layouts":"/services/data/v58.0/sobjects/Campaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/Campaign"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Change Event","labelPlural":"Campaign Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Feed","labelPlural":"Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/CampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/CampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Field History","labelPlural":"Campaign Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/CampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/CampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03V","label":"Campaign + Influence Model","labelPlural":"Campaign Influence Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignInfluenceModel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignInfluenceModel/{ID}","describe":"/services/data/v58.0/sobjects/CampaignInfluenceModel/describe","sobject":"/services/data/v58.0/sobjects/CampaignInfluenceModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00v","label":"Campaign + Member","labelPlural":"Campaign Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMember/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMember/describe","layouts":"/services/data/v58.0/sobjects/CampaignMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Change Event","labelPlural":"Campaign Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Y","label":"Campaign + Member Status","labelPlural":"Campaign Member Statuses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatus","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatus/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe","layouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMemberStatus","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Status Change Event","labelPlural":"Campaign Member Status Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatusChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Campaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08s","label":"Campaign + Share","labelPlural":"Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/CampaignShare/describe","sobject":"/services/data/v58.0/sobjects/CampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03O","label":"Card + Payment Method","labelPlural":"Card Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CardPaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CardPaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/CardPaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/CardPaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/CardPaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"500","label":"Case","labelPlural":"Cases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Case","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Case/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Case/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Case/describe/approvalLayouts","caseArticleSuggestions":"/services/data/v58.0/sobjects/Case/suggestedArticles","caseRowArticleSuggestions":"/services/data/v58.0/sobjects/Case/{ID}/suggestedArticles","listviews":"/services/data/v58.0/sobjects/Case/listviews","describe":"/services/data/v58.0/sobjects/Case/describe","quickActions":"/services/data/v58.0/sobjects/Case/quickActions","layouts":"/services/data/v58.0/sobjects/Case/describe/layouts","sobject":"/services/data/v58.0/sobjects/Case"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Change Event","labelPlural":"Case Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CaseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CaseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CaseChangeEvent"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Case + Comment","labelPlural":"Case Comments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseComment/{ID}","describe":"/services/data/v58.0/sobjects/CaseComment/describe","layouts":"/services/data/v58.0/sobjects/CaseComment/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03j","label":"Case + Contact Role","labelPlural":"Case Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseContactRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseContactRole/describe","layouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Feed","labelPlural":"Case Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseFeed/{ID}","describe":"/services/data/v58.0/sobjects/CaseFeed/describe","sobject":"/services/data/v58.0/sobjects/CaseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + History","labelPlural":"Case History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseHistory/{ID}","describe":"/services/data/v58.0/sobjects/CaseHistory/describe","sobject":"/services/data/v58.0/sobjects/CaseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"555","label":"Case + Milestone","labelPlural":"Case Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseMilestone","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseMilestone/{ID}","describe":"/services/data/v58.0/sobjects/CaseMilestone/describe","layouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseMilestone"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01n","label":"Case + Share","labelPlural":"Case Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseShare/{ID}","describe":"/services/data/v58.0/sobjects/CaseShare/describe","sobject":"/services/data/v58.0/sobjects/CaseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"010","label":"Case + Solution","labelPlural":"Case Solution","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseSolution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseSolution/{ID}","describe":"/services/data/v58.0/sobjects/CaseSolution/describe","sobject":"/services/data/v58.0/sobjects/CaseSolution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Status Value","labelPlural":"Case Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseStatus/{ID}","describe":"/services/data/v58.0/sobjects/CaseStatus/describe","sobject":"/services/data/v58.0/sobjects/CaseStatus"}},{"activateable":false,"associateEntityType":"TeamMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member","labelPlural":"Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamMember"}},{"activateable":false,"associateEntityType":"TeamRole","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member Role","labelPlural":"Case Team Member Role","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamRole/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamRole"}},{"activateable":false,"associateEntityType":"TeamTemplate","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team","labelPlural":"Predefined Case Team","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplate/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplate/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplate"}},{"activateable":false,"associateEntityType":"TeamTemplateMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Member","labelPlural":"Predefined Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateMember"}},{"activateable":false,"associateEntityType":"TeamTemplateRecord","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Record","labelPlural":"Predefined Case Team Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02o","label":"Category + Data","labelPlural":"Category Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryData/{ID}","describe":"/services/data/v58.0/sobjects/CategoryData/describe","sobject":"/services/data/v58.0/sobjects/CategoryData"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02n","label":"Category + Node","labelPlural":"Category Nodes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryNode/{ID}","describe":"/services/data/v58.0/sobjects/CategoryNode/describe","sobject":"/services/data/v58.0/sobjects/CategoryNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ca","label":"Chatter + Activity","labelPlural":"Chatter Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterActivity/{ID}","describe":"/services/data/v58.0/sobjects/ChatterActivity/describe","sobject":"/services/data/v58.0/sobjects/ChatterActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MY","label":"Extension","labelPlural":"Extensions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtension/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtension/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtension"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ob","label":"Chatter + Extension Configuration","labelPlural":"Chatter Extension Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtensionConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtensionConfig/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtensionConfig/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtensionConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"713","label":"Client + Browser","labelPlural":"Client Browser","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ClientBrowser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ClientBrowser/{ID}","describe":"/services/data/v58.0/sobjects/ClientBrowser/describe","sobject":"/services/data/v58.0/sobjects/ClientBrowser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0F9","label":"Group","labelPlural":"Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroup/{ID}","listviews":"/services/data/v58.0/sobjects/CollaborationGroup/listviews","describe":"/services/data/v58.0/sobjects/CollaborationGroup/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CollaborationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Group + Feed","labelPlural":"Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FB","label":"Group + Member","labelPlural":"Group Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMember/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I5","label":"Group + Member Request","labelPlural":"Group Member Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMemberRequest","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Aa","label":"Group + Record","labelPlural":"Group Records","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupRecord/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H1","label":"Chatter + Invitation","labelPlural":"Chatter Invitations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationInvitation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationInvitation/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationInvitation/describe","sobject":"/services/data/v58.0/sobjects/CollaborationInvitation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9CR","label":"Collaboration + Room","labelPlural":"Collaboration Rooms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationRoom","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationRoom/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationRoom/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationRoom/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationRoom"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05k","label":"Color + Definition","labelPlural":"Color Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ColorDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ColorDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ColorDefinition/describe","sobject":"/services/data/v58.0/sobjects/ColorDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note, + Attachment, Google Doc And File","labelPlural":"Notes, Attachments, Google + Docs And Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CombinedAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CombinedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/CombinedAttachment/describe","sobject":"/services/data/v58.0/sobjects/CombinedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xl","label":"Communication + Subscription","labelPlural":"Communication Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscription/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscription/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscription/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscription/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eB","label":"Communication + Subscription Channel Type","labelPlural":"Communication Subscription Channel + Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Feed","labelPlural":"Communication Subscription + Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type History","labelPlural":"Communication Subscription + Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Share","labelPlural":"Communication Subscription + Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dY","label":"Communication + Subscription Consent","labelPlural":"Communication Subscription Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionConsent/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Change Event","labelPlural":"Communication Subscription + Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Feed","labelPlural":"Communication Subscription Consent + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent History","labelPlural":"Communication Subscription Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Share","labelPlural":"Communication Subscription Consent + Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Feed","labelPlural":"Communication Subscription Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription History","labelPlural":"Communication Subscription History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscription","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Share","labelPlural":"Communication Subscription Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0al","label":"Communication + Subscription Timing","labelPlural":"Communication Subscription Timings","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionTiming","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTiming/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionTiming/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTiming"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing Feed","labelPlural":"Communication Subscription Timing + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing History","labelPlural":"Communication Subscription Timing History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09a","label":"Zone","labelPlural":"Zones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Community","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Community/{ID}","describe":"/services/data/v58.0/sobjects/Community/describe","sobject":"/services/data/v58.0/sobjects/Community"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QR","label":"Concurrent + Long Running Apex Error Event","labelPlural":"Concurrent Long Running Apex + Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConcurLongRunApexErrEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/describe","sobject":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ah","label":"Conference + Number","labelPlural":"Conference Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConferenceNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConferenceNumber/{ID}","describe":"/services/data/v58.0/sobjects/ConferenceNumber/describe","sobject":"/services/data/v58.0/sobjects/ConferenceNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H4","label":"Connected + App","labelPlural":"Connected Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConnectedApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConnectedApplication/{ID}","describe":"/services/data/v58.0/sobjects/ConnectedApplication/describe","sobject":"/services/data/v58.0/sobjects/ConnectedApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mo","label":"Consumption + Rate","labelPlural":"Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionRate/describe","layouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionRate"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionRate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Rate History ID","labelPlural":"Consumption Rate History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionRateHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionRateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mh","label":"Consumption + Schedule","labelPlural":"Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionSchedule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe","quickActions":"/services/data/v58.0/sobjects/ConsumptionSchedule/quickActions","layouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionSchedule"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ConsumptionSchedule","labelPlural":"ConsumptionSchedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule History ID","labelPlural":"Consumption Schedule History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ConsumptionSchedule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule Share","labelPlural":"Consumption Schedule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"003","label":"Contact","labelPlural":"Contacts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Contact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contact/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contact/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contact/listviews","describe":"/services/data/v58.0/sobjects/Contact/describe","quickActions":"/services/data/v58.0/sobjects/Contact/quickActions","layouts":"/services/data/v58.0/sobjects/Contact/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contact"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Change Event","labelPlural":"Contact Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CC","label":"Contact + Clean Info","labelPlural":"Contact Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/ContactCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/ContactCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Feed","labelPlural":"Contact Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContactFeed/describe","sobject":"/services/data/v58.0/sobjects/ContactFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + History","labelPlural":"Contact History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8lW","label":"Contact + Point Address","labelPlural":"Contact Point Addresses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddress/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointAddress/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointAddress/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointAddress"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Change Event","labelPlural":"Contact Point Address Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address History","labelPlural":"Contact Point Address History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointAddress","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Share","labelPlural":"Contact Point Address Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZX","label":"Contact + Point Consent","labelPlural":"Contact Point Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Change Event","labelPlural":"Contact Point Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent History","labelPlural":"Contact Point Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Share","labelPlural":"Contact Point Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Vl","label":"Contact + Point Email","labelPlural":"Contact Point Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmail/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointEmail/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointEmail/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Change Event","labelPlural":"Contact Point Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email History","labelPlural":"Contact Point Email History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Share","labelPlural":"Contact Point Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ow","label":"Contact + Point Phone","labelPlural":"Contact Point Phones","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointPhone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointPhone/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointPhone/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointPhone"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Change Event","labelPlural":"Contact Point Phone Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone History","labelPlural":"Contact Point Phone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointPhone","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Share","labelPlural":"Contact Point Phone Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZY","label":"Contact + Point Type Consent","labelPlural":"Contact Point Type Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointTypeConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Change Event","labelPlural":"Contact Point Type Consent + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent History","labelPlural":"Contact Point Type Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointTypeConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Share","labelPlural":"Contact Point Type Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tz","label":"Contact + Request","labelPlural":"Contact Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactRequest/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequest/describe","layouts":"/services/data/v58.0/sobjects/ContactRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Request Share","labelPlural":"Contact Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ContactRequestShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03s","label":"Contact + Share","labelPlural":"Contact Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactShare/describe","sobject":"/services/data/v58.0/sobjects/ContactShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03S","label":"Asset + File","labelPlural":"Asset Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentAsset/{ID}","describe":"/services/data/v58.0/sobjects/ContentAsset/describe","sobject":"/services/data/v58.0/sobjects/ContentAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05T","label":"Content + Body","labelPlural":"Content Bodies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentBody","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentBody/{ID}","describe":"/services/data/v58.0/sobjects/ContentBody/describe","sobject":"/services/data/v58.0/sobjects/ContentBody"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05D","label":"Content + Delivery","labelPlural":"Content Deliveries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistribution","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistribution/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistribution/describe","sobject":"/services/data/v58.0/sobjects/ContentDistribution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05H","label":"Content + Delivery View","labelPlural":"Content Delivery Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistributionView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistributionView/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistributionView/describe","sobject":"/services/data/v58.0/sobjects/ContentDistributionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"069","label":"Content + Document","labelPlural":"Content Documents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContentDocument","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocument/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocument/describe","layouts":"/services/data/v58.0/sobjects/ContentDocument/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocument"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Change Event","labelPlural":"Content Document Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ContentDocument + Feed","labelPlural":"ContentDocument Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentFeed/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document History","labelPlural":"Content Document History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06A","label":"Content + Document Link","labelPlural":"Content Document Link","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentLink/describe","layouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocumentLink"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocumentLink","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Link Change Event","labelPlural":"Content Document Link Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLinkChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"057","label":"Content + Document Subscription","labelPlural":"Content Document Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07H","label":"Content + Folder","labelPlural":"Content Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolder/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolder/describe","sobject":"/services/data/v58.0/sobjects/ContentFolder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Folder Item","labelPlural":"Content Folder Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentFolderItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentFolderItem/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderItem/describe","layouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentFolderItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07v","label":"Content + Folder Link","labelPlural":"Content Folder Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderLink/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07I","label":"Content + Folder Member","labelPlural":"Content Folder Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderMember/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05V","label":"Content + Notification","labelPlural":"Content Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentNotification/{ID}","describe":"/services/data/v58.0/sobjects/ContentNotification/describe","sobject":"/services/data/v58.0/sobjects/ContentNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05Q","label":"Content + Tag Subscription","labelPlural":"Content Tag Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentTagSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentTagSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentTagSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentTagSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05S","label":"Content + User Subscription","labelPlural":"Content User Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentUserSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentUserSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentUserSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentUserSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"068","label":"Content + Version","labelPlural":"Content Versions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentVersion/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentVersion/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersion/describe","layouts":"/services/data/v58.0/sobjects/ContentVersion/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentVersion"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version Change Event","labelPlural":"Content Version Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05C","label":"Content + Version Comment","labelPlural":"Content Version Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionComment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionComment/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionComment/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionComment"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version History","labelPlural":"Content Version History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05J","label":"Content + Version Rating","labelPlural":"Content Version Ratings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionRating","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionRating/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionRating/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionRating"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"058","label":"Library","labelPlural":"Libraries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspace","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspace/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspace/describe","layouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentWorkspace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"059","label":"Library + Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library + Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library + Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract + Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + History","labelPlural":"Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"811","label":"Contract + Line Item","labelPlural":"Contract Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineItem/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Change Event","labelPlural":"Contract Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Feed","labelPlural":"Contract Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item History","labelPlural":"Contract Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3lp","label":"Contract + Line Outcome","labelPlural":"Contract Line Outcomes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcome","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcome/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcome/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineOutcome/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcome"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sD","label":"Contract + Line Outcome Data","labelPlural":"Contract Line Outcome Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcomeData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeData/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe","layouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineOutcomeData","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Data Change Event","labelPlural":"Contract Line Outcome Data + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeDataChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential + Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential + Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential + Stuffing Event Store Feed","labelPlural":"Credential Stuffing Event Store + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"50g","label":"Credit + Memo","labelPlural":"Credit Memos","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CreditMemo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemo/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemo/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemo/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemo/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Feed","labelPlural":"Credit Memo Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo History","labelPlural":"Credit Memo History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4sF","label":"Credit + Memo Invoice Application","labelPlural":"Credit Memo Invoice Applications","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplication","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplication/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoInvApplication/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplication"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Invoice Application History","labelPlural":"Credit Memo Invoice Application History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9yx","label":"Credit + Memo Line","labelPlural":"Credit Memo Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoLine/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoLine/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line Feed","labelPlural":"Credit Memo Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line History","labelPlural":"Credit Memo Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CreditMemo","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Share","labelPlural":"Credit Memo Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoShare/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoShare/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08a","label":"Cron + Job","labelPlural":"Cron Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronJobDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronJobDetail/{ID}","describe":"/services/data/v58.0/sobjects/CronJobDetail/describe","sobject":"/services/data/v58.0/sobjects/CronJobDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08e","label":"Scheduled + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom + Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom + Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom + Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom + Help Menu Section","labelPlural":"Custom Help Menu Sections","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuSection","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuSection/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuSection/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuSection"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XH","label":"Custom + HTTP Header","labelPlural":"Custom HTTP Headers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomHttpHeader","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomHttpHeader/{ID}","describe":"/services/data/v58.0/sobjects/CustomHttpHeader/describe","layouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomHttpHeader"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ML","label":"Custom + Notification Type","labelPlural":"Custom Notification Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomNotificationType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomNotificationType/{ID}","describe":"/services/data/v58.0/sobjects/CustomNotificationType/describe","sobject":"/services/data/v58.0/sobjects/CustomNotificationType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3NA","label":"Custom + Object Usage By User License Metric","labelPlural":"Custom Object Usage By + User License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomObjectUserLicenseMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/{ID}","describe":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/describe","sobject":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CP","label":"Custom + Permission","labelPlural":"Custom Permissions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermission/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermission/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermission/describe","layouts":"/services/data/v58.0/sobjects/CustomPermission/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PD","label":"Custom + Permission Dependency","labelPlural":"Custom Permission Dependencies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermissionDependency","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermissionDependency/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe","layouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermissionDependency"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0o6","label":"Customer","labelPlural":"Customers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Customer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Customer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Customer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Customer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Customer/describe","layouts":"/services/data/v58.0/sobjects/Customer/describe/layouts","sobject":"/services/data/v58.0/sobjects/Customer"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Customer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Customer + Share","labelPlural":"Customer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomerShare/{ID}","describe":"/services/data/v58.0/sobjects/CustomerShare/describe","sobject":"/services/data/v58.0/sobjects/CustomerShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06E","label":"D&B + Company","labelPlural":"D&B Companies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DandBCompany","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Z","label":"Dashboard","labelPlural":"Dashboards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Dashboard","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Dashboard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Dashboard/{ID}","listviews":"/services/data/v58.0/sobjects/Dashboard/listviews","describe":"/services/data/v58.0/sobjects/Dashboard/describe","layouts":"/services/data/v58.0/sobjects/Dashboard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Dashboard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01a","label":"Dashboard + Component","labelPlural":"Dashboard Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponent/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponent/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"DashboardComponent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Component Feed","labelPlural":"Dashboard Component Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponentFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponentFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponentFeed"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Dashboard","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Feed","labelPlural":"Dashboard Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03Q","label":"Data + Assessment Field Metric","labelPlural":"Data Assessment Field Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentFieldMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03P","label":"Data + Assessment Metric","labelPlural":"Data Assessment Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03R","label":"Data + Assessment Field Value Metric","labelPlural":"Data Assessment Field Value + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentValueMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentValueMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1e5","label":"Data + Object Data Change Event","labelPlural":"Data Object Data Change Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataObjectDataChgEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/describe","sobject":"/services/data/v58.0/sobjects/DataObjectDataChgEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05a","label":"Data + Statistics","labelPlural":"Data Statistics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataStatistics","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataStatistics/{ID}","describe":"/services/data/v58.0/sobjects/DataStatistics/describe","sobject":"/services/data/v58.0/sobjects/DataStatistics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4dt","label":"Data + Type","labelPlural":"Data Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataType/{ID}","describe":"/services/data/v58.0/sobjects/DataType/describe","sobject":"/services/data/v58.0/sobjects/DataType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZT","label":"Data + Use Legal Basis","labelPlural":"Data Use Legal Bases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUseLegalBasis","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasis/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe","layouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasis"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUseLegalBasis","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis History","labelPlural":"Data Use Legal Basis History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUseLegalBasis","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis Share","labelPlural":"Data Use Legal Basis Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZW","label":"Data + Use Purpose","labelPlural":"Data Use Purposes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUsePurpose","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUsePurpose/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUsePurpose/describe","quickActions":"/services/data/v58.0/sobjects/DataUsePurpose/quickActions","layouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUsePurpose"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUsePurpose","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose History","labelPlural":"Data Use Purpose History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUsePurpose","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose Share","labelPlural":"Data Use Purpose Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeShare/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07m","label":"Data.com + Address","labelPlural":"Data.com Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudAddress","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudAddress/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudAddress/describe","sobject":"/services/data/v58.0/sobjects/DatacloudAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09K","label":"Data.com + Company","labelPlural":"Data.com Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08C","label":"Data.com + Contact","labelPlural":"Data.com Contacts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudContact","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudContact/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudContact/describe","sobject":"/services/data/v58.0/sobjects/DatacloudContact"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09N","label":"D&B + Company","labelPlural":"DandB Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudDandBCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudDandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudDandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09O","label":"Data.com + Owned Entity","labelPlural":"Data.com Owned Entity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudOwnedEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/describe","sobject":"/services/data/v58.0/sobjects/DatacloudOwnedEntity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09F","label":"Data.com + Usage","labelPlural":"Data.com Usage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudPurchaseUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/describe","sobject":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Declined + Event Relation","labelPlural":"Declined Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeclinedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeclinedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/DeclinedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/DeclinedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00C","label":"Recycle + Bin Item","labelPlural":"Recycle Bin","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeleteEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeleteEvent/{ID}","describe":"/services/data/v58.0/sobjects/DeleteEvent/describe","sobject":"/services/data/v58.0/sobjects/DeleteEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DS","label":"Digital + Signature","labelPlural":"Digital Signatures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignature","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignature/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DigitalSignature/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DigitalSignature/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignature"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"DigitalSignature","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Digital + Signature Change Event","labelPlural":"Digital Signature Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignatureChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DW","label":"Digital + Wallet","labelPlural":"Digital Wallets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DigitalWallet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DigitalWallet/{ID}","describe":"/services/data/v58.0/sobjects/DigitalWallet/describe","quickActions":"/services/data/v58.0/sobjects/DigitalWallet/quickActions","layouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DigitalWallet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"015","label":"Document","labelPlural":"Documents","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Document","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Document/{ID}","describe":"/services/data/v58.0/sobjects/Document/describe","sobject":"/services/data/v58.0/sobjects/Document"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05X","label":"Document + Entity Map","labelPlural":"Document Entity Map","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DocumentAttachmentMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DocumentAttachmentMap/{ID}","describe":"/services/data/v58.0/sobjects/DocumentAttachmentMap/describe","sobject":"/services/data/v58.0/sobjects/DocumentAttachmentMap"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I4","label":"Domain","labelPlural":"Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Domain","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Domain/{ID}","describe":"/services/data/v58.0/sobjects/Domain/describe","sobject":"/services/data/v58.0/sobjects/Domain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jf","label":"Custom + URL","labelPlural":"Custom URLs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DomainSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DomainSite/{ID}","describe":"/services/data/v58.0/sobjects/DomainSite/describe","sobject":"/services/data/v58.0/sobjects/DomainSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GL","label":"Duplicate + Record Item","labelPlural":"Duplicate Record Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DuplicateRecordItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GK","label":"Duplicate + Record Set","labelPlural":"Duplicate Record Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRecordSet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordSet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bm","label":"Duplicate + Rule","labelPlural":"Duplicate Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRule/{ID}","describe":"/services/data/v58.0/sobjects/DuplicateRule/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06F","label":"EmailCapture","labelPlural":"Email + Captures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailCapture","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailCapture/{ID}","describe":"/services/data/v58.0/sobjects/EmailCapture/describe","sobject":"/services/data/v58.0/sobjects/EmailCapture"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T6","label":"Email + Domain Filter","labelPlural":"Email Domain Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainFilter/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainFilter/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09P","label":"Email + Domain Key","labelPlural":"Email Domain Keys","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainKey","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainKey/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainKey/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainKey"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02s","label":"Email + Message","labelPlural":"Email Messages","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EmailMessage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailMessage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EmailMessage/describe","quickActions":"/services/data/v58.0/sobjects/EmailMessage/quickActions","layouts":"/services/data/v58.0/sobjects/EmailMessage/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailMessage"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailMessage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Message Change Event","labelPlural":"Email Message Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CZ","label":"Email + Message Relation","labelPlural":"Email Message Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageRelation/{ID}","describe":"/services/data/v58.0/sobjects/EmailMessageRelation/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"26Z","label":"Email + Relay","labelPlural":"Email Relay","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailRelay","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailRelay/{ID}","describe":"/services/data/v58.0/sobjects/EmailRelay/describe","sobject":"/services/data/v58.0/sobjects/EmailRelay"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"093","label":"Email + Services Address","labelPlural":"Email Services Address","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesAddress/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesAddress/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"091","label":"Email + Service","labelPlural":"Email Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesFunction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesFunction/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesFunction/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"018","label":"Email + Status","labelPlural":"Email Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailStatus/{ID}","describe":"/services/data/v58.0/sobjects/EmailStatus/describe","sobject":"/services/data/v58.0/sobjects/EmailStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00X","label":"Email + Template","labelPlural":"Email Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EmailTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EmailTemplate/describe","layouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Template Change Event","labelPlural":"Email Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lq","label":"Embedded + Service","labelPlural":"Embedded Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uu","label":"Embedded + Service Label","labelPlural":"Embedded Service Labels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceLabel","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceLabel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eF","label":"Engagement + Channel Type","labelPlural":"Engagement Channel Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EngagementChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EngagementChannelType/describe","quickActions":"/services/data/v58.0/sobjects/EngagementChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/EngagementChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Feed","labelPlural":"Engagement Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type History","labelPlural":"Engagement Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"EngagementChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Share","labelPlural":"Engagement Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rn","label":"Enhanced + Letterhead","labelPlural":"Enhanced Letterheads","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EnhancedLetterhead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterhead/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe","layouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/layouts","sobject":"/services/data/v58.0/sobjects/EnhancedLetterhead"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EnhancedLetterhead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Enhanced + Letterhead Feed","labelPlural":"Enhanced Letterhead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EnhancedLetterheadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/describe","sobject":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"550","label":"Entitlement","labelPlural":"Entitlements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Entitlement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Entitlement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Entitlement/describe","layouts":"/services/data/v58.0/sobjects/Entitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/Entitlement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Change Event","labelPlural":"Entitlement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EntitlementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EntitlementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EntitlementChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E7","label":"Entitlement + Contact","labelPlural":"Entitlement Contacts","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntitlementContact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntitlementContact/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementContact/describe","layouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntitlementContact"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Feed","labelPlural":"Entitlement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementFeed/describe","sobject":"/services/data/v58.0/sobjects/EntitlementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + History","labelPlural":"Entitlement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementHistory/describe","sobject":"/services/data/v58.0/sobjects/EntitlementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"551","label":"Entitlement + Template","labelPlural":"Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/EntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ie","label":"Entity + Definition","labelPlural":"Entity Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityDefinition/{ID}","describe":"/services/data/v58.0/sobjects/EntityDefinition/describe","sobject":"/services/data/v58.0/sobjects/EntityDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1EM","label":"Object + Milestone","labelPlural":"Object Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntityMilestone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntityMilestone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EntityMilestone/describe","quickActions":"/services/data/v58.0/sobjects/EntityMilestone/quickActions","layouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntityMilestone"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone Feed","labelPlural":"Object Milestone Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneFeed/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone History","labelPlural":"Object Milestone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneHistory/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nv","label":"Entity + Particle","labelPlural":"Entity Particles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityParticle","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityParticle/{ID}","describe":"/services/data/v58.0/sobjects/EntityParticle/describe","sobject":"/services/data/v58.0/sobjects/EntityParticle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E8","label":"Entity + Subscription","labelPlural":"Entity Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitySubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitySubscription/{ID}","describe":"/services/data/v58.0/sobjects/EntitySubscription/describe","sobject":"/services/data/v58.0/sobjects/EntitySubscription"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Error_Log__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Log","labelPlural":"Change Event: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Error_Log__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Error Log","labelPlural":"Share: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__Share/{ID}","describe":"/services/data/v58.0/sobjects/Error_Log__Share/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1M","label":"Error + Log","labelPlural":"Connection Error Log","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Error_Log__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Error_Log__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Error_Log__c/describe","quickActions":"/services/data/v58.0/sobjects/Error_Log__c/quickActions","layouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Error_Log__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00U","label":"Event","labelPlural":"Events","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Event","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Event/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Event/{ID}","eventSeriesUpdates":"/services/data/v58.0/sobjects/Event/{ID}/fromThisEventOnwards","describe":"/services/data/v58.0/sobjects/Event/describe","quickActions":"/services/data/v58.0/sobjects/Event/quickActions","layouts":"/services/data/v58.0/sobjects/Event/describe/layouts","sobject":"/services/data/v58.0/sobjects/Event"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cd","label":"Platform + Event Subscription","labelPlural":"Platform Event Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventBusSubscriber","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventBusSubscriber/{ID}","describe":"/services/data/v58.0/sobjects/EventBusSubscriber/describe","sobject":"/services/data/v58.0/sobjects/EventBusSubscriber"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Change Event","labelPlural":"Event Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Feed","labelPlural":"Event Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventFeed/{ID}","describe":"/services/data/v58.0/sobjects/EventFeed/describe","sobject":"/services/data/v58.0/sobjects/EventFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AT","label":"Event + Log File","labelPlural":"Event Log Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventLogFile","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventLogFile/{ID}","describe":"/services/data/v58.0/sobjects/EventLogFile/describe","sobject":"/services/data/v58.0/sobjects/EventLogFile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0RE","label":"Event + Relation","labelPlural":"Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelation/{ID}","describe":"/services/data/v58.0/sobjects/EventRelation/describe","sobject":"/services/data/v58.0/sobjects/EventRelation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relation Change Event","labelPlural":"Event Relation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k2","label":"Event + Relay Config","labelPlural":"Event Relay Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfig/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayConfig/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfig"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelayConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relay Config Change Event","labelPlural":"Event Relay Config Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfigChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k4","label":"Event + Relay Feedback","labelPlural":"Event Relay Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayFeedback/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayFeedback/describe","sobject":"/services/data/v58.0/sobjects/EventRelayFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1V4","label":"Expense","labelPlural":"Expenses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Expense","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Expense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Expense/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Expense/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Expense/describe","quickActions":"/services/data/v58.0/sobjects/Expense/quickActions","layouts":"/services/data/v58.0/sobjects/Expense/describe/layouts","sobject":"/services/data/v58.0/sobjects/Expense"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Change Event","labelPlural":"Expense Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ExpenseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ExpenseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ExpenseChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Feed","labelPlural":"Expense Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + History","labelPlural":"Expense History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6g5","label":"Expense + Report","labelPlural":"Expense Reports","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReport/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExpenseReport/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReport/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReport"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3zl","label":"Expense + Report Entry","labelPlural":"Expense Report Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReportEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntry/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReportEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntry"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry Feed","labelPlural":"Expense Report Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry History","labelPlural":"Expense Report Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Feed","labelPlural":"Expense Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report History","labelPlural":"Expense Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExpenseReport","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Share","labelPlural":"Expense Report Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Expense","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Share","labelPlural":"Expense Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1GS","label":"ExpressionFilter","labelPlural":"ExpressionFilters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilter/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilter/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8BM","label":"ExpressionFilterCriteria","labelPlural":"ExpressionFilterCriteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilterCriteria"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pz","label":"Expression + Set View","labelPlural":"Expression Set Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionSetView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionSetView/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionSetView/describe","sobject":"/services/data/v58.0/sobjects/ExpressionSetView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XC","label":"External + Data Source","labelPlural":"External Data Sources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ExternalDataSource","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSource/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSource/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6Ay","label":"External + Data Source Descriptor","labelPlural":"External Data Source Descriptors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataSrcDescriptor","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XU","label":"External + Data User Authentication","labelPlural":"External Data User Authentications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataUserAuth","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataUserAuth/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataUserAuth/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataUserAuth"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AY","label":"External + Event","labelPlural":"External Events","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ExternalEvent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExternalEvent/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEvent/describe","layouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExternalEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08N","label":"External + Event Mapping","labelPlural":"External Event Mappings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMapping","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMapping/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExternalEventMapping/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExternalEventMapping/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMapping"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExternalEventMapping","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"External + Event Mapping Share","labelPlural":"External Event Mapping Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMappingShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMappingShare/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEventMappingShare/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMappingShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08M","label":"Feed + Attachment","labelPlural":"Feed Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedAttachment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/FeedAttachment/describe","sobject":"/services/data/v58.0/sobjects/FeedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D7","label":"Feed + Comment","labelPlural":"Feed Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedComment/{ID}","describe":"/services/data/v58.0/sobjects/FeedComment/describe","sobject":"/services/data/v58.0/sobjects/FeedComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D5","label":"Feed + Item","labelPlural":"Feed Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FeedItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedItem/{ID}","describe":"/services/data/v58.0/sobjects/FeedItem/describe","quickActions":"/services/data/v58.0/sobjects/FeedItem/quickActions","layouts":"/services/data/v58.0/sobjects/FeedItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FeedItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I0","label":"Feed + Like","labelPlural":"Feed Likes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedLike","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedLike/{ID}","describe":"/services/data/v58.0/sobjects/FeedLike/describe","sobject":"/services/data/v58.0/sobjects/FeedLike"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09A","label":"Feed + Poll Choice","labelPlural":"Feed Poll Choices","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollChoice","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollChoice/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollChoice/describe","sobject":"/services/data/v58.0/sobjects/FeedPollChoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09B","label":"Feed + Poll Vote","labelPlural":"Feed Poll Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollVote","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollVote/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollVote/describe","sobject":"/services/data/v58.0/sobjects/FeedPollVote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08U","label":"Feed + Revision","labelPlural":"Feed Revisions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedRevision","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedRevision/{ID}","describe":"/services/data/v58.0/sobjects/FeedRevision/describe","sobject":"/services/data/v58.0/sobjects/FeedRevision"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QJ","label":"Feed + Signal","labelPlural":"Feed Signals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedSignal","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedSignal/{ID}","describe":"/services/data/v58.0/sobjects/FeedSignal/describe","sobject":"/services/data/v58.0/sobjects/FeedSignal"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D6","label":"Feed + Tracked Change","labelPlural":"Feed Tracked Changes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedTrackedChange","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedTrackedChange/{ID}","describe":"/services/data/v58.0/sobjects/FeedTrackedChange/describe","sobject":"/services/data/v58.0/sobjects/FeedTrackedChange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fe","label":"Field + Definition","labelPlural":"Field Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldDefinition/{ID}","describe":"/services/data/v58.0/sobjects/FieldDefinition/describe","sobject":"/services/data/v58.0/sobjects/FieldDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01k","label":"Field + Permissions","labelPlural":"Field Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldPermissions/{ID}","describe":"/services/data/v58.0/sobjects/FieldPermissions/describe","sobject":"/services/data/v58.0/sobjects/FieldPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Security Classification","labelPlural":"Field Security Classifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldSecurityClassification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldSecurityClassification/{ID}","describe":"/services/data/v58.0/sobjects/FieldSecurityClassification/describe","sobject":"/services/data/v58.0/sobjects/FieldSecurityClassification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mf","label":"Field + Service Mobile Settings","labelPlural":"Field Service Mobile Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe","layouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/layouts","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettings"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FieldServiceMobileSettings","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Service Mobile Settings Change Event","labelPlural":"Field Service Mobile + Settings Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettingsChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UJ","label":"Field + Service Org Settings","labelPlural":"Field Service Org Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceOrgSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceOrgSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0vI","label":"File + Event","labelPlural":"File Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FileEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FileEvent/describe","sobject":"/services/data/v58.0/sobjects/FileEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0wg","label":"File + Event Store","labelPlural":"File Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEventStore/{ID}","describe":"/services/data/v58.0/sobjects/FileEventStore/describe","sobject":"/services/data/v58.0/sobjects/FileEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06h","label":"FileSearchActivity","labelPlural":"File + Search Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileSearchActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileSearchActivity/{ID}","describe":"/services/data/v58.0/sobjects/FileSearchActivity/describe","sobject":"/services/data/v58.0/sobjects/FileSearchActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2kA","label":"Finance + Balance Snapshot","labelPlural":"Finance Balance Snapshots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceBalanceSnapshot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe","quickActions":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceBalanceSnapshot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Change Event","labelPlural":"Finance Balance Snapshot Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceBalanceSnapshot","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Share","labelPlural":"Finance Balance Snapshot Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0n3","label":"Finance + Transaction","labelPlural":"Finance Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceTransaction/describe","quickActions":"/services/data/v58.0/sobjects/FinanceTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceTransaction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Change Event","labelPlural":"Finance Transaction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceTransaction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Share","labelPlural":"Finance Transaction Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceTransactionShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"022","label":"Fiscal + Year Settings","labelPlural":"Fiscal Year Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FiscalYearSettings","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FiscalYearSettings/{ID}","describe":"/services/data/v58.0/sobjects/FiscalYearSettings/describe","sobject":"/services/data/v58.0/sobjects/FiscalYearSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06i","label":"Flex + Queue Item","labelPlural":"Flex Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlexQueueItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlexQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/FlexQueueItem/describe","sobject":"/services/data/v58.0/sobjects/FlexQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3dd","label":"Flow + Definition","labelPlural":"Flow Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowDefinitionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowDefinitionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowDefinitionView/describe","sobject":"/services/data/v58.0/sobjects/FlowDefinitionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eC","label":"Flow + Execution Error Event","labelPlural":"Flow Execution Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowExecutionErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fo","label":"Flow + Interview","labelPlural":"Flow Interviews","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowInterview","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowInterview/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowInterview/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterview/describe","layouts":"/services/data/v58.0/sobjects/FlowInterview/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowInterview"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8gZ","label":"Flow + Interview Log","labelPlural":"Flow Interview Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLog/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLog/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f6","label":"Flow + Interview Log Entry","labelPlural":"Flow Interview Log Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogEntry"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterviewLog","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Log Share","labelPlural":"Flow Interview Log Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterview","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Share","labelPlural":"Flow Interview Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jo","label":"Orchestration + Event","labelPlural":"Orchestration Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jE","label":"Orchestration + Run","labelPlural":"Orchestration Runs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Run Share","labelPlural":"Orchestration Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jF","label":"Orchestration + Stage Run","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration + Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration + Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow + Record Relation","labelPlural":"Flow Record Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowRecordRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowRecordRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowRecordRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowRecordRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31y","label":"Flow + Interview Stage Relation","labelPlural":"Flow Interview Stage Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowStageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowStageRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowStageRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowStageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2hU","label":"Flow + Test Result","labelPlural":"Flow Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResult/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResult/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResult"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowTestResult","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Test Result Share","labelPlural":"Flow Test Result Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResultShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResultShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResultShare/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResultShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YB","label":"Flow + Test View","labelPlural":"Flow Test Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestView/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestView/describe","sobject":"/services/data/v58.0/sobjects/FlowTestView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3ad","label":"Flow + Variable","labelPlural":"Flow Variables","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVariableView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVariableView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVariableView/describe","sobject":"/services/data/v58.0/sobjects/FlowVariableView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3vd","label":"Flow + Version","labelPlural":"Flow Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVersionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVersionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVersionView/describe","sobject":"/services/data/v58.0/sobjects/FlowVersionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00l","label":"Folder","labelPlural":"Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Folder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Folder/{ID}","describe":"/services/data/v58.0/sobjects/Folder/describe","sobject":"/services/data/v58.0/sobjects/Folder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Foldered + Content Document","labelPlural":"Foldered Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FolderedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FolderedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/FolderedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/FolderedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kn","label":"Formula + Function","labelPlural":"Formula Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunction/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunction/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fE","label":"Formula + Context Function","labelPlural":"Formula Context Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionAllowedType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kh","label":"Formula + Function Category","labelPlural":"Formula Function Categories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionCategory","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionCategory/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionCategory/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionCategory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06d","label":"Setting + Granted By License","labelPlural":"Settings Granted By Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GrantedByLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GrantedByLicense/{ID}","describe":"/services/data/v58.0/sobjects/GrantedByLicense/describe","sobject":"/services/data/v58.0/sobjects/GrantedByLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00G","label":"Group","labelPlural":"Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Group","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Group/{ID}","describe":"/services/data/v58.0/sobjects/Group/describe","sobject":"/services/data/v58.0/sobjects/Group"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"011","label":"Group + Member","labelPlural":"Group Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GroupMember/{ID}","describe":"/services/data/v58.0/sobjects/GroupMember/describe","sobject":"/services/data/v58.0/sobjects/GroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1gp","label":"Gateway + Provider Payment Method Type","labelPlural":"Gateway Provider Payment Method + Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"GtwyProvPaymentMethodType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/{ID}","describe":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/describe","sobject":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C0","label":"Holiday","labelPlural":"Holidays","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Holiday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Holiday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Holiday/{ID}","describe":"/services/data/v58.0/sobjects/Holiday/describe","layouts":"/services/data/v58.0/sobjects/Holiday/describe/layouts","sobject":"/services/data/v58.0/sobjects/Holiday"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9s4","label":"IP + Address Range","labelPlural":"IP Address Ranges","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"IPAddressRange","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/IPAddressRange/{ID}","describe":"/services/data/v58.0/sobjects/IPAddressRange/describe","layouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/layouts","sobject":"/services/data/v58.0/sobjects/IPAddressRange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09k","label":"Icon + Definition","labelPlural":"Icon Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IconDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IconDefinition/{ID}","describe":"/services/data/v58.0/sobjects/IconDefinition/describe","sobject":"/services/data/v58.0/sobjects/IconDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"087","label":"Idea","labelPlural":"Ideas","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Idea","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Idea/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Idea/{ID}","describe":"/services/data/v58.0/sobjects/Idea/describe","layouts":"/services/data/v58.0/sobjects/Idea/describe/layouts","sobject":"/services/data/v58.0/sobjects/Idea"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Idea","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Idea + Comment","labelPlural":"Idea Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdeaComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdeaComment/{ID}","describe":"/services/data/v58.0/sobjects/IdeaComment/describe","sobject":"/services/data/v58.0/sobjects/IdeaComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0k8","label":"Identity + Provider Event Store","labelPlural":"Identity Provider Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityProviderEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityProviderEventStore/{ID}","describe":"/services/data/v58.0/sobjects/IdentityProviderEventStore/describe","sobject":"/services/data/v58.0/sobjects/IdentityProviderEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jx","label":"Identity + Verification Event","labelPlural":"Identity Verification Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityVerificationEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityVerificationEvent/{ID}","describe":"/services/data/v58.0/sobjects/IdentityVerificationEvent/describe","sobject":"/services/data/v58.0/sobjects/IdentityVerificationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yu","label":"Identity + Provider Event Log","labelPlural":"Identity Event Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdpEventLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdpEventLog/{ID}","describe":"/services/data/v58.0/sobjects/IdpEventLog/describe","sobject":"/services/data/v58.0/sobjects/IdpEventLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6TS","label":"Trusted + Domain for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/IframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/IframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YL","label":"Image","labelPlural":"Images","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Image","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Image/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Image/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Image/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Image/describe","quickActions":"/services/data/v58.0/sobjects/Image/quickActions","layouts":"/services/data/v58.0/sobjects/Image/describe/layouts","sobject":"/services/data/v58.0/sobjects/Image"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Feed","labelPlural":"Image Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ImageFeed/describe","sobject":"/services/data/v58.0/sobjects/ImageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + History","labelPlural":"Image History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ImageHistory/describe","sobject":"/services/data/v58.0/sobjects/ImageHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Image","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Share","labelPlural":"Image Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageShare/{ID}","describe":"/services/data/v58.0/sobjects/ImageShare/describe","sobject":"/services/data/v58.0/sobjects/ImageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PK","label":"Individual","labelPlural":"Individuals","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Individual","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Individual/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Individual/{ID}","describe":"/services/data/v58.0/sobjects/Individual/describe","quickActions":"/services/data/v58.0/sobjects/Individual/quickActions","layouts":"/services/data/v58.0/sobjects/Individual/describe/layouts","sobject":"/services/data/v58.0/sobjects/Individual"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + Change Event","labelPlural":"Individual Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/IndividualChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/IndividualChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/IndividualChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + History","labelPlural":"Individual History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualHistory/{ID}","describe":"/services/data/v58.0/sobjects/IndividualHistory/describe","sobject":"/services/data/v58.0/sobjects/IndividualHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Individual","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T5","label":"Individual + Share","labelPlural":"Individual Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualShare/{ID}","describe":"/services/data/v58.0/sobjects/IndividualShare/describe","sobject":"/services/data/v58.0/sobjects/IndividualShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0El","label":"Installed + Mobile App","labelPlural":"Installed Mobile Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InstalledMobileApp","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InstalledMobileApp/{ID}","describe":"/services/data/v58.0/sobjects/InstalledMobileApp/describe","sobject":"/services/data/v58.0/sobjects/InstalledMobileApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3tt","label":"Invoice","labelPlural":"Invoices","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Invoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Invoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Invoice/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Invoice/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Invoice/describe","quickActions":"/services/data/v58.0/sobjects/Invoice/quickActions","layouts":"/services/data/v58.0/sobjects/Invoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/Invoice"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Feed","labelPlural":"Invoice Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice History","labelPlural":"Invoice History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5TV","label":"Invoice + Line","labelPlural":"Invoice Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"InvoiceLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/InvoiceLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/InvoiceLine/describe","quickActions":"/services/data/v58.0/sobjects/InvoiceLine/quickActions","layouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/InvoiceLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line Feed","labelPlural":"Invoice Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line History","labelPlural":"Invoice Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Invoice","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Share","labelPlural":"Invoice Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceShare/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceShare/describe","sobject":"/services/data/v58.0/sobjects/InvoiceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jp","label":"Job + Profile","labelPlural":"Job Profiles","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"JobProfile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/JobProfile/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/JobProfile/describe","quickActions":"/services/data/v58.0/sobjects/JobProfile/quickActions","layouts":"/services/data/v58.0/sobjects/JobProfile/describe/layouts","sobject":"/services/data/v58.0/sobjects/JobProfile"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Feed","labelPlural":"Job Profile Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileFeed/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileFeed/describe","sobject":"/services/data/v58.0/sobjects/JobProfileFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile History","labelPlural":"Job Profile History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileHistory/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileHistory/describe","sobject":"/services/data/v58.0/sobjects/JobProfileHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"JobProfile","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Share","labelPlural":"Job Profile Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileShare/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileShare/describe","sobject":"/services/data/v58.0/sobjects/JobProfileShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0in","label":"Knowledgeable + User","labelPlural":"Knowledgeable Users","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"KnowledgeableUser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/KnowledgeableUser/{ID}","describe":"/services/data/v58.0/sobjects/KnowledgeableUser/describe","sobject":"/services/data/v58.0/sobjects/KnowledgeableUser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00Q","label":"Lead","labelPlural":"Leads","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Lead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Lead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Lead/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Lead/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Lead/listviews","describe":"/services/data/v58.0/sobjects/Lead/describe","quickActions":"/services/data/v58.0/sobjects/Lead/quickActions","layouts":"/services/data/v58.0/sobjects/Lead/describe/layouts","sobject":"/services/data/v58.0/sobjects/Lead"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Change Event","labelPlural":"Lead Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LeadChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LeadChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LeadChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CL","label":"Lead + Clean Info","labelPlural":"Lead Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/LeadCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/LeadCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Feed","labelPlural":"Lead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadFeed/{ID}","describe":"/services/data/v58.0/sobjects/LeadFeed/describe","sobject":"/services/data/v58.0/sobjects/LeadFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + History","labelPlural":"Lead History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadHistory/{ID}","describe":"/services/data/v58.0/sobjects/LeadHistory/describe","sobject":"/services/data/v58.0/sobjects/LeadHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Lead","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01o","label":"Lead + Share","labelPlural":"Lead Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadShare/{ID}","describe":"/services/data/v58.0/sobjects/LeadShare/describe","sobject":"/services/data/v58.0/sobjects/LeadShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Lead + Status Value","labelPlural":"Lead Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadStatus/{ID}","describe":"/services/data/v58.0/sobjects/LeadStatus/describe","sobject":"/services/data/v58.0/sobjects/LeadStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fw","label":"Legal + Entity","labelPlural":"Legal Entities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LegalEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LegalEntity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LegalEntity/describe","quickActions":"/services/data/v58.0/sobjects/LegalEntity/quickActions","layouts":"/services/data/v58.0/sobjects/LegalEntity/describe/layouts","sobject":"/services/data/v58.0/sobjects/LegalEntity"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityFeed/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityFeed/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity History","labelPlural":"Legal Entity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityHistory/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityHistory/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LegalEntity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity Share","labelPlural":"Legal Entity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityShare/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityShare/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0S1","label":"Lightning + Experience Theme","labelPlural":"Lightning Experience Themes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningExperienceTheme","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningExperienceTheme/{ID}","describe":"/services/data/v58.0/sobjects/LightningExperienceTheme/describe","sobject":"/services/data/v58.0/sobjects/LightningExperienceTheme"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7MM","label":"LightningOnboardingConfig","labelPlural":"LightningOnboardingConfigs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningOnboardingConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningOnboardingConfig/{ID}","describe":"/services/data/v58.0/sobjects/LightningOnboardingConfig/describe","sobject":"/services/data/v58.0/sobjects/LightningOnboardingConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bh","label":"Lightning + URI Event","labelPlural":"Lightning URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEvent/{ID}","describe":"/services/data/v58.0/sobjects/LightningUriEvent/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bi","label":"Lightning + URI Event Stream","labelPlural":"Lightning URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LightningUriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LightningUriEventStream/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XB","label":"List + Email","labelPlural":"List Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ListEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ListEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ListEmail/{ID}","describe":"/services/data/v58.0/sobjects/ListEmail/describe","layouts":"/services/data/v58.0/sobjects/ListEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ListEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ListEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Change Event","labelPlural":"List Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ListEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ListEmailChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XF","label":"List + Email Individual Recipient","labelPlural":"List Email Individual Recipients","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailIndividualRecipient","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/describe","sobject":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XD","label":"List + Email Recipient Source","labelPlural":"List Email Recipient Sources","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailRecipientSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailRecipientSource/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailRecipientSource/describe","sobject":"/services/data/v58.0/sobjects/ListEmailRecipientSource"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ListEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Share","labelPlural":"List Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ListEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00B","label":"List + View","labelPlural":"List Views","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListView/{ID}","describe":"/services/data/v58.0/sobjects/ListView/describe","sobject":"/services/data/v58.0/sobjects/ListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Dd","label":"List + View Chart","labelPlural":"List View Charts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChart","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChart/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChart/describe","sobject":"/services/data/v58.0/sobjects/ListViewChart"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0De","label":"List + View Chart Instance","labelPlural":"List View Chart Instances","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChartInstance","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChartInstance/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChartInstance/describe","sobject":"/services/data/v58.0/sobjects/ListViewChartInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0X8","label":"List + View Event","labelPlural":"List View Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEvent/{ID}","describe":"/services/data/v58.0/sobjects/ListViewEvent/describe","sobject":"/services/data/v58.0/sobjects/ListViewEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XG","label":"List + View Event Stream","labelPlural":"List View Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListViewEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ListViewEventStream/describe","sobject":"/services/data/v58.0/sobjects/ListViewEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"131","label":"Location","labelPlural":"Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Location","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Location/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Location/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Location/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Location/describe","quickActions":"/services/data/v58.0/sobjects/Location/quickActions","layouts":"/services/data/v58.0/sobjects/Location/describe/layouts","sobject":"/services/data/v58.0/sobjects/Location"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Change Event","labelPlural":"Location Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Feed","labelPlural":"Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gh","label":"Location + Group","labelPlural":"Location Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroup/describe","quickActions":"/services/data/v58.0/sobjects/LocationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/LocationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gx","label":"Location + Group Assignment","labelPlural":"Location Group Assignments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroupAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroupAssignment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe","layouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroupAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Feed","labelPlural":"Location Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group History","labelPlural":"Location Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LocationGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Share","labelPlural":"Location Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupShare/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + History","labelPlural":"Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Location","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Share","labelPlural":"Location Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationShare/describe","sobject":"/services/data/v58.0/sobjects/LocationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VX","label":"LoginAs + Event","labelPlural":"LoginAs Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginAsEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VY","label":"LoginAs + Event Stream","labelPlural":"LoginAs Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginAsEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginAsEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1HB","label":"Login + Event","labelPlural":"Login Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ll","label":"Login + Event Stream","labelPlural":"Login Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04F","label":"Login + Geo Data","labelPlural":"Login Geo Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginGeo","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginGeo/{ID}","describe":"/services/data/v58.0/sobjects/LoginGeo/describe","sobject":"/services/data/v58.0/sobjects/LoginGeo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ya","label":"Login + History","labelPlural":"Login History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginHistory/{ID}","describe":"/services/data/v58.0/sobjects/LoginHistory/describe","sobject":"/services/data/v58.0/sobjects/LoginHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"710","label":"Login + IP","labelPlural":"Login IP","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginIp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginIp/{ID}","describe":"/services/data/v58.0/sobjects/LoginIp/describe","sobject":"/services/data/v58.0/sobjects/LoginIp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06M","label":"Logout + Event","labelPlural":"Logout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEvent/{ID}","describe":"/services/data/v58.0/sobjects/LogoutEvent/describe","sobject":"/services/data/v58.0/sobjects/LogoutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PH","label":"Logout + Event Stream","labelPlural":"Logout Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LogoutEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LogoutEventStream/describe","sobject":"/services/data/v58.0/sobjects/LogoutEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lookups + from Activity","labelPlural":"Lookups from Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LookedUpFromActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LookedUpFromActivity/{ID}","describe":"/services/data/v58.0/sobjects/LookedUpFromActivity/describe","sobject":"/services/data/v58.0/sobjects/LookedUpFromActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"873","label":"ML + Model","labelPlural":"ML Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModel/describe","sobject":"/services/data/v58.0/sobjects/MLModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"876","label":"ML + Model Factor","labelPlural":"ML Model Factors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactor/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"877","label":"ML + Model Factor Component","labelPlural":"ML Model Factor Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactorComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactorComponent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactorComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"874","label":"ML + Model Metric","labelPlural":"ML Model Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelMetric/{ID}","describe":"/services/data/v58.0/sobjects/MLModelMetric/describe","sobject":"/services/data/v58.0/sobjects/MLModelMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6gt","label":"ML + Prediction Definition","labelPlural":"ML Prediction Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLPredictionDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLPredictionDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLPredictionDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLPredictionDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7gh","label":"ML + Recommendation Definition","labelPlural":"ML Recommendation Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLRecommendationDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLRecommendationDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLRecommendationDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLRecommendationDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JZ","label":"Macro","labelPlural":"Macros","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Macro","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Macro/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Macro/{ID}","describe":"/services/data/v58.0/sobjects/Macro/describe","layouts":"/services/data/v58.0/sobjects/Macro/describe/layouts","sobject":"/services/data/v58.0/sobjects/Macro"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Change Event","labelPlural":"Macro Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + History","labelPlural":"Macro History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroHistory/{ID}","describe":"/services/data/v58.0/sobjects/MacroHistory/describe","sobject":"/services/data/v58.0/sobjects/MacroHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ji","label":"Macro + Instruction","labelPlural":"Macro Instructions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstruction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstruction/{ID}","describe":"/services/data/v58.0/sobjects/MacroInstruction/describe","sobject":"/services/data/v58.0/sobjects/MacroInstruction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MacroInstruction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Instruction Change Event","labelPlural":"Macro Instruction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstructionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Macro","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Share","labelPlural":"Macro Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroShare/describe","sobject":"/services/data/v58.0/sobjects/MacroShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5ML","label":"Macro + Usage","labelPlural":"Macro Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MacroUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MacroUsage/describe","sobject":"/services/data/v58.0/sobjects/MacroUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MacroUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Usage Share","labelPlural":"Macro Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroUsageShare/describe","sobject":"/services/data/v58.0/sobjects/MacroUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01H","label":"Mail + Merge Template","labelPlural":"Mail Merge Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MailmergeTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MailmergeTemplate/{ID}","describe":"/services/data/v58.0/sobjects/MailmergeTemplate/describe","sobject":"/services/data/v58.0/sobjects/MailmergeTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MA","label":"Maintenance + Asset","labelPlural":"Maintenance Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceAsset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAsset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceAsset/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceAsset/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceAsset"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Change Event","labelPlural":"Maintenance Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Feed","labelPlural":"Maintenance Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset History","labelPlural":"Maintenance Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MP","label":"Maintenance + Plan","labelPlural":"Maintenance Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenancePlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenancePlan/describe","quickActions":"/services/data/v58.0/sobjects/MaintenancePlan/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenancePlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Change Event","labelPlural":"Maintenance Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Feed","labelPlural":"Maintenance Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan History","labelPlural":"Maintenance Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenancePlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Share","labelPlural":"Maintenance Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7fc","label":"Maintenance + Work Rule","labelPlural":"Maintenance Work Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceWorkRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceWorkRule/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Change Event","labelPlural":"Maintenance Work Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Feed","labelPlural":"Maintenance Work Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule History","labelPlural":"Maintenance Work Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenanceWorkRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Share","labelPlural":"Maintenance Work Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"20Y","label":"Managed + Content","labelPlural":"Managed Contents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContent/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContent/describe","layouts":"/services/data/v58.0/sobjects/ManagedContent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ap","label":"Managed + Content Channel","labelPlural":"Managed Content Channels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentChannel/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentChannel/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zu","label":"Managed + Content Space","labelPlural":"Managed Content Spaces","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ManagedContentSpace","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentSpace/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentSpace/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentSpace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Ps","label":"Managed + Content Variant","labelPlural":"Managed Content Variants","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariant","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariant/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentVariant/describe","layouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContentVariant"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ManagedContentVariant","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Managed + Content Variant Change Event","labelPlural":"Managed Content Variant Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching + Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching + Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My + Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named + Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note + and Attachment","labelPlural":"Notes and Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"NoteAndAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NoteAndAttachment/{ID}","describe":"/services/data/v58.0/sobjects/NoteAndAttachment/describe","sobject":"/services/data/v58.0/sobjects/NoteAndAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ud","label":"OAuth + Custom Scope","labelPlural":"OAuth Custom Scopes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScope","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScope/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScope/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScope"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ue","label":"OAuth + Custom Scope App ","labelPlural":"OAuth Custom Scope Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScopeApp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScopeApp/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScopeApp/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScopeApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CQ","label":"Oauth + Token","labelPlural":"Oauth Tokens","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthToken","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthToken/{ID}","describe":"/services/data/v58.0/sobjects/OauthToken/describe","sobject":"/services/data/v58.0/sobjects/OauthToken"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"110","label":"Object + Permissions","labelPlural":"Object Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ObjectPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ObjectPermissions/{ID}","describe":"/services/data/v58.0/sobjects/ObjectPermissions/describe","sobject":"/services/data/v58.0/sobjects/ObjectPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UG","label":"Onboarding + Metrics","labelPlural":"Onboarding Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OnboardingMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OnboardingMetrics/{ID}","describe":"/services/data/v58.0/sobjects/OnboardingMetrics/describe","sobject":"/services/data/v58.0/sobjects/OnboardingMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Open + Activity","labelPlural":"Open Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpenActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpenActivity/{ID}","describe":"/services/data/v58.0/sobjects/OpenActivity/describe","sobject":"/services/data/v58.0/sobjects/OpenActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OH","label":"Operating + Hours","labelPlural":"Operating Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHours/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHours/describe","quickActions":"/services/data/v58.0/sobjects/OperatingHours/quickActions","layouts":"/services/data/v58.0/sobjects/OperatingHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHours"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Change Event","labelPlural":"Operating Hours Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Feed","labelPlural":"Operating Hours Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jG","label":"Operating + Hours Holiday","labelPlural":"Operating Hours Holidays","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHoursHoliday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHoliday/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe","layouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHoursHoliday"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHoursHoliday","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Holiday Feed","labelPlural":"Operating Hours Holiday Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursHolidayFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"006","label":"Opportunity","labelPlural":"Opportunities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Opportunity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Opportunity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Opportunity/listviews","describe":"/services/data/v58.0/sobjects/Opportunity/describe","quickActions":"/services/data/v58.0/sobjects/Opportunity/quickActions","layouts":"/services/data/v58.0/sobjects/Opportunity/describe/layouts","sobject":"/services/data/v58.0/sobjects/Opportunity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Change Event","labelPlural":"Opportunity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00J","label":"Opportunity: + Competitor","labelPlural":"Opportunity: Competitor","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityCompetitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityCompetitor/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityCompetitor/describe","sobject":"/services/data/v58.0/sobjects/OpportunityCompetitor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00K","label":"Opportunity + Contact Role","labelPlural":"Opportunity Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRole/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityContactRole/describe","quickActions":"/services/data/v58.0/sobjects/OpportunityContactRole/quickActions","layouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OpportunityContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Contact Role Change Event","labelPlural":"Opportunity Contact Role Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Feed","labelPlural":"Opportunity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFeed/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFeed/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Field History","labelPlural":"Opportunity Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFieldHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"008","label":"Opportunity + History","labelPlural":"Opportunity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00k","label":"Opportunity + Product","labelPlural":"Opportunity Product","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OpportunityLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityLineItem/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityLineItem/describe","layouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityLineItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Opportunity + Partner","labelPlural":"Opportunity Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityPartner/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityPartner/describe","layouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Opportunity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00t","label":"Opportunity + Share","labelPlural":"Opportunity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityShare/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityShare/describe","sobject":"/services/data/v58.0/sobjects/OpportunityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Opportunity + Stage","labelPlural":"Opportunity Stage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityStage","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityStage/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityStage/describe","sobject":"/services/data/v58.0/sobjects/OpportunityStage"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"801","label":"Order","labelPlural":"Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Order","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order/describe","quickActions":"/services/data/v58.0/sobjects/Order/quickActions","layouts":"/services/data/v58.0/sobjects/Order/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Change Event","labelPlural":"Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Feed","labelPlural":"Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + History","labelPlural":"Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"802","label":"Order + Product","labelPlural":"Order Products","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OrderItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OrderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OrderItem/{ID}","describe":"/services/data/v58.0/sobjects/OrderItem/describe","layouts":"/services/data/v58.0/sobjects/OrderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OrderItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Change Event","labelPlural":"Order Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Feed","labelPlural":"Order Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product History","labelPlural":"Order Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fy","label":"Order + Share","labelPlural":"Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderShare/{ID}","describe":"/services/data/v58.0/sobjects/OrderShare/describe","sobject":"/services/data/v58.0/sobjects/OrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Status Value","labelPlural":"Order Status Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/OrderStatus/describe","sobject":"/services/data/v58.0/sobjects/OrderStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Stripe Coupon","labelPlural":"Change Event: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Stripe Coupon","labelPlural":"Share: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1N","label":"Order + Stripe Coupon","labelPlural":"Order Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D3","label":"Organization + Email Address Security","labelPlural":"Organization Email Address Security","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgEmailAddressSecurity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/{ID}","describe":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/describe","sobject":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OL","label":"Org + Lifecycle Notification","labelPlural":"Org Lifecycle Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgLifecycleNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgLifecycleNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrgLifecycleNotification/eventSchema","describe":"/services/data/v58.0/sobjects/OrgLifecycleNotification/describe","sobject":"/services/data/v58.0/sobjects/OrgLifecycleNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3v1","label":"Org + Metric","labelPlural":"Org Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetric/{ID}","describe":"/services/data/v58.0/sobjects/OrgMetric/describe","sobject":"/services/data/v58.0/sobjects/OrgMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9aM","label":"Org + Metric Scan Result","labelPlural":"Org Metric Scan Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanResult/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6mX","label":"Org + Metric Scan Summary","labelPlural":"Org Metric Scan Summaries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanSummary","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanSummary/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanSummary"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D2","label":"Organization-wide + From Email Address","labelPlural":"Organization-wide From Email Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgWideEmailAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgWideEmailAddress/{ID}","describe":"/services/data/v58.0/sobjects/OrgWideEmailAddress/describe","sobject":"/services/data/v58.0/sobjects/OrgWideEmailAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00D","label":"Organization","labelPlural":"Organizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization/{ID}","describe":"/services/data/v58.0/sobjects/Organization/describe","sobject":"/services/data/v58.0/sobjects/Organization"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Organization_Type__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Organization Type","labelPlural":"Change Event: Organization Type","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1O","label":"Organization + Type","labelPlural":"Organization Type","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__c/{ID}","describe":"/services/data/v58.0/sobjects/Organization_Type__c/describe","quickActions":"/services/data/v58.0/sobjects/Organization_Type__c/quickActions","layouts":"/services/data/v58.0/sobjects/Organization_Type__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Organization_Type__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q1","label":"Outgoing + Email","labelPlural":"Outgoing Emails","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmail/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmail/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q3","label":"Outgoing + Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change + Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party + Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Feed","labelPlural":"Party Consent Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent History","labelPlural":"Party Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PartyConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Share","labelPlural":"Party Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentShare/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0aQ","label":"Payment","labelPlural":"Payments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Payment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Payment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Payment/{ID}","describe":"/services/data/v58.0/sobjects/Payment/describe","quickActions":"/services/data/v58.0/sobjects/Payment/quickActions","layouts":"/services/data/v58.0/sobjects/Payment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Payment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9tv","label":"Payment + Authorization Adjustment","labelPlural":"Payment Authorization Adjustments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthAdjustment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthAdjustment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xc","label":"Payment + Authorization","labelPlural":"Payment Authorizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthorization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthorization/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthorization/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthorization/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthorization"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Payment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PaymentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PaymentFeed/describe","sobject":"/services/data/v58.0/sobjects/PaymentFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0b0","label":"Payment + Gateway","labelPlural":"Payment Gateways","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGateway","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGateway/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGateway/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGateway/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGateway"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xt","label":"Payment + Gateway Log","labelPlural":"Payment Gateway Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayLog/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGatewayLog/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cJ","label":"Payment + Gateway Provider","labelPlural":"Payment Gateway Providers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayProvider/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe","layouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9zx","label":"Payment + Group","labelPlural":"Payment Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGroup/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGroup/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGroup/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1PL","label":"Payment + Line Invoice","labelPlural":"Payment Line Invoices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentLineInvoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentLineInvoice/{ID}","describe":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe","quickActions":"/services/data/v58.0/sobjects/PaymentLineInvoice/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentLineInvoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":true,"isSubtype":false,"keyPrefix":"0aa","label":"Payment + Method","labelPlural":"Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentMethod","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/PaymentMethod/describe","layouts":"/services/data/v58.0/sobjects/PaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"026","label":"Period","labelPlural":"Period","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Period","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Period/{ID}","describe":"/services/data/v58.0/sobjects/Period/describe","sobject":"/services/data/v58.0/sobjects/Period"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PS","label":"Permission + Set","labelPlural":"Permission Sets","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSet/describe","sobject":"/services/data/v58.0/sobjects/PermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pa","label":"Permission + Set Assignment","labelPlural":"Permission Set Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetAssignment/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetAssignment/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f3","label":"Permission + Set Event","labelPlural":"Permission Set Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PermissionSetEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PermissionSetEvent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f9","label":"Permission + Set Event Store ","labelPlural":"Permission Set Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEventStore/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetEventStore/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PG","label":"Permission + Set Group","labelPlural":"Permission Set Groups","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSetGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroup/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroup/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PM","label":"Permission + Set Group Component","labelPlural":"Permission Set Group Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetGroupComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroupComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PL","label":"Permission + Set License","labelPlural":"Permission Set Licenses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicense/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicense/describe","layouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/layouts","sobject":"/services/data/v58.0/sobjects/PermissionSetLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2LA","label":"Permission + Set License Assignment","labelPlural":"Permission Set License Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicenseAssign","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01P","label":"Permission + Set Tab Setting","labelPlural":"Permission Set Tab Setting","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetTabSetting","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetTabSetting/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetTabSetting/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetTabSetting"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pv","label":"Picklist + Value Info","labelPlural":"Picklist Value Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PicklistValueInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PicklistValueInfo/{ID}","describe":"/services/data/v58.0/sobjects/PicklistValueInfo/describe","sobject":"/services/data/v58.0/sobjects/PicklistValueInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JV","label":"Platform + Action","labelPlural":"Platform Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformAction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformAction/{ID}","describe":"/services/data/v58.0/sobjects/PlatformAction/describe","sobject":"/services/data/v58.0/sobjects/PlatformAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Er","label":"Platform + Cache Partition","labelPlural":"Platform Cache Partitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartition/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartition/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ev","label":"Platform + Cache Partition Type","labelPlural":"Platform Cache Partition Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartitionType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartitionType/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartitionType/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartitionType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Kk","label":"Platform + Event Usage Metric","labelPlural":"Platform Event Usage Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformEventUsageMetric","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/{ID}","describe":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/describe","sobject":"/services/data/v58.0/sobjects/PlatformEventUsageMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0V2","label":"Platform + Status Alert Event","labelPlural":"Platform Status Alert Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformStatusAlertEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/describe","sobject":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01s","label":"Price + Book","labelPlural":"Price Books","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Pricebook2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Pricebook2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Pricebook2/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2/describe","layouts":"/services/data/v58.0/sobjects/Pricebook2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Pricebook2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Change Event","labelPlural":"Price Book Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book History","labelPlural":"Price Book History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2History/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2History/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01u","label":"Price + Book Entry","labelPlural":"Price Book Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PricebookEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PricebookEntry/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntry/describe","layouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/PricebookEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry Change Event","labelPlural":"Price Book Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry History","labelPlural":"Price Book Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04a","label":"Process + Definition","labelPlural":"Process Definition","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ProcessDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ProcessDefinition/describe","sobject":"/services/data/v58.0/sobjects/ProcessDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Pe","label":"Process + Exception","labelPlural":"Process Exceptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProcessException","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProcessException/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProcessException/describe","quickActions":"/services/data/v58.0/sobjects/ProcessException/quickActions","layouts":"/services/data/v58.0/sobjects/ProcessException/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProcessException"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4v2","label":"Process + Exception Event","labelPlural":"Process Exception Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProcessExceptionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProcessExceptionEvent/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProcessException","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Exception Share","labelPlural":"Process Exception Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionShare/{ID}","describe":"/services/data/v58.0/sobjects/ProcessExceptionShare/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"11Q","label":"Process + Flow Migration","labelPlural":"Process Flow Migration Objects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessFlowMigration","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessFlowMigration/{ID}","describe":"/services/data/v58.0/sobjects/ProcessFlowMigration/describe","sobject":"/services/data/v58.0/sobjects/ProcessFlowMigration"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04g","label":"Process + Instance","labelPlural":"Process Instance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstance","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstance/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstance/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Instance History","labelPlural":"Process Instance History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceHistory/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OO","label":"Process + Instance Node","labelPlural":"Process Instance Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04h","label":"Process + Instance Step","labelPlural":"Process Instance Step","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceStep","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceStep/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceStep/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04i","label":"Approval + Request","labelPlural":"Approval Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceWorkitem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04b","label":"Process + Node","labelPlural":"Process Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessNode","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01t","label":"Product","labelPlural":"Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Product2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Product2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Product2/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Product2/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Product2/describe","quickActions":"/services/data/v58.0/sobjects/Product2/quickActions","layouts":"/services/data/v58.0/sobjects/Product2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Product2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Change Event","labelPlural":"Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Product2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Product2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Product2ChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Feed","labelPlural":"Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2Feed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2Feed/{ID}","describe":"/services/data/v58.0/sobjects/Product2Feed/describe","sobject":"/services/data/v58.0/sobjects/Product2Feed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + History","labelPlural":"Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2History/{ID}","describe":"/services/data/v58.0/sobjects/Product2History/describe","sobject":"/services/data/v58.0/sobjects/Product2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gv","label":"Product + Consumed","labelPlural":"Products Consumed","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductConsumed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumed/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumed/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumed/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumed"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Change Event","labelPlural":"Product Consumed Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Feed","labelPlural":"Product Consumed Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed History","labelPlural":"Product Consumed History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pY","label":"Product + Consumed State","labelPlural":"Product Consumed States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumedState/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumedState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumedState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumedState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed State History","labelPlural":"Product Consumed State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mq","label":"Product + Consumption Schedule","labelPlural":"Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe","layouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumptionSchedule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E9","label":"Product + Entitlement Template","labelPlural":"Product Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductEntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/ProductEntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Co","label":"Product + Item","labelPlural":"Product Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Change Event","labelPlural":"Product Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Feed","labelPlural":"Product Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item History","labelPlural":"Product Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Share","labelPlural":"Product Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemShare/describe","sobject":"/services/data/v58.0/sobjects/ProductItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TR","label":"Product + Item Transaction","labelPlural":"Product Item Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItemTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItemTransaction/describe","quickActions":"/services/data/v58.0/sobjects/ProductItemTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItemTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction Feed","labelPlural":"Product Item Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction History","labelPlural":"Product Item Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TS","label":"Product + Request","labelPlural":"Product Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequest/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequest/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequest"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Change Event","labelPlural":"Product Request Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Feed","labelPlural":"Product Request Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request History ","labelPlural":"Product Request History ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tw","label":"Product + Request Line Item","labelPlural":"Product Request Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequestLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequestLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Change Event","labelPlural":"Product Request Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Feed","labelPlural":"Product Request Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item History ","labelPlural":"Product Request Line Item History + ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Share","labelPlural":"Product Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gn","label":"Product + Required","labelPlural":"Products Required","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequired","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequired/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequired/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequired/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequired/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequired"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Change Event","labelPlural":"Product Required Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Feed","labelPlural":"Product Required Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required History","labelPlural":"Product Required History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iR","label":"Product + Service Campaign","labelPlural":"Product Service Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaign/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaign"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Feed","labelPlural":"Product Service Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign History","labelPlural":"Product Service Campaign History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"23N","label":"Product + Service Campaign Item","labelPlural":"Product Service Campaign Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaignItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Feed","labelPlural":"Product Service Campaign Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item History","labelPlural":"Product Service Campaign Item + History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Status","labelPlural":"Product Service Campaign Item + Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductServiceCampaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Share","labelPlural":"Product Service Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Status","labelPlural":"Product Service Campaign Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lu","label":"Product + Transfer","labelPlural":"Product Transfers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductTransfer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransfer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransfer/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransfer/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransfer"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Change Event","labelPlural":"Product Transfer Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Feed","labelPlural":"Product Transfer Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer History","labelPlural":"Product Transfer History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductTransfer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Share","labelPlural":"Product Transfer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferShare/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0nw","label":"Product + Transfer State","labelPlural":"Product Transfer States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductTransferState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransferState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransferState/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransferState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransferState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransferState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer State History","labelPlural":"Product Transfer State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Uj","label":"Product + Warranty Term","labelPlural":"Product Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductWarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTerm/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/ProductWarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTerm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term Feed","labelPlural":"Product Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term History","labelPlural":"Product Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00e","label":"Profile","labelPlural":"Profile","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Profile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Profile/{ID}","describe":"/services/data/v58.0/sobjects/Profile/describe","sobject":"/services/data/v58.0/sobjects/Profile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sk","label":"Skill","labelPlural":"Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProfileSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkill/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkill/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkill"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SE","label":"Endorsement","labelPlural":"Endorsements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsement"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + Feed","labelPlural":"Endorsement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + History","labelPlural":"Endorsement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Feed","labelPlural":"Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + History","labelPlural":"Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProfileSkill","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Share","labelPlural":"Skill Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillShare/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillShare/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SM","label":"Skill + User","labelPlural":"Skill Users","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillUser/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillUser/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillUser"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User Feed","labelPlural":"Skill User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User History","labelPlural":"Skill User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bs","label":"Prompt","labelPlural":"Prompts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Prompt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Prompt/{ID}","describe":"/services/data/v58.0/sobjects/Prompt/describe","sobject":"/services/data/v58.0/sobjects/Prompt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bu","label":"Prompt + Action","labelPlural":"Prompt Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptAction/describe","sobject":"/services/data/v58.0/sobjects/PromptAction"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptAction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Action Share","labelPlural":"Prompt Action Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptActionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptActionShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptActionShare/describe","sobject":"/services/data/v58.0/sobjects/PromptActionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4Dr","label":"Prompt + Error","labelPlural":"Prompt Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptError","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptError/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptError/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptError/describe","sobject":"/services/data/v58.0/sobjects/PromptError"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptError","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Error Share","labelPlural":"Prompt Error Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptErrorShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptErrorShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptErrorShare/describe","sobject":"/services/data/v58.0/sobjects/PromptErrorShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bt","label":"Prompt + Version","labelPlural":"Prompt Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptVersion/{ID}","describe":"/services/data/v58.0/sobjects/PromptVersion/describe","sobject":"/services/data/v58.0/sobjects/PromptVersion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pb","label":"Publisher","labelPlural":"Publishers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Publisher","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Publisher/{ID}","describe":"/services/data/v58.0/sobjects/Publisher/describe","sobject":"/services/data/v58.0/sobjects/Publisher"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IF","label":"Push + Topic","labelPlural":"Push Topics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PushTopic","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PushTopic/{ID}","describe":"/services/data/v58.0/sobjects/PushTopic/describe","sobject":"/services/data/v58.0/sobjects/PushTopic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03g","label":"Queue + sObject","labelPlural":"Queue sObjects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QueueSobject","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QueueSobject/{ID}","describe":"/services/data/v58.0/sobjects/QueueSobject/describe","sobject":"/services/data/v58.0/sobjects/QueueSobject"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"574","label":"Quick + Text","labelPlural":"Quick Text","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"QuickText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/QuickText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/QuickText/{ID}","describe":"/services/data/v58.0/sobjects/QuickText/describe","layouts":"/services/data/v58.0/sobjects/QuickText/describe/layouts","sobject":"/services/data/v58.0/sobjects/QuickText"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Change Event","labelPlural":"Quick Text Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/QuickTextChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/QuickTextChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/QuickTextChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text History","labelPlural":"Quick Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextHistory/describe","sobject":"/services/data/v58.0/sobjects/QuickTextHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickText","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Share","labelPlural":"Quick Text Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5QL","label":"Quick + Text Usage","labelPlural":"Quick Text Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/QuickTextUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/QuickTextUsage/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickTextUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Usage Share","labelPlural":"Quick Text Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextUsageShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QR","label":"Quote + Template Rich Text Data","labelPlural":"Quote Template Rich Text Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuoteTemplateRichTextData","queryable":false,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/{ID}","describe":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/describe","sobject":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Line_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Stripe Coupon Association","labelPlural":"Change Event: + Quote Line Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1P","label":"Quote + Line Stripe Coupon Association","labelPlural":"Quote Line Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon Association","labelPlural":"Change Event: Quote + Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1Q","label":"Quote + Stripe Coupon Association","labelPlural":"Quote Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon","labelPlural":"Change Event: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Quote_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Stripe Coupon","labelPlural":"Share: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1R","label":"Quote + Stripe Coupon","labelPlural":"Quote Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recently + Viewed","labelPlural":"Recently Viewed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecentlyViewed","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecentlyViewed/{ID}","describe":"/services/data/v58.0/sobjects/RecentlyViewed/describe","sobject":"/services/data/v58.0/sobjects/RecentlyViewed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pr","label":"Recommendation","labelPlural":"Recommendations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Recommendation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Recommendation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Recommendation/{ID}","describe":"/services/data/v58.0/sobjects/Recommendation/describe","layouts":"/services/data/v58.0/sobjects/Recommendation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Recommendation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Recommendation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recommendation + Change Event","labelPlural":"Recommendation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecommendationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecommendationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecommendationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rr","label":"Recommendation + Response","labelPlural":"Recommendation Responses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationResponse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationResponse/{ID}","describe":"/services/data/v58.0/sobjects/RecommendationResponse/describe","sobject":"/services/data/v58.0/sobjects/RecommendationResponse"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rw","label":"RecordAction","labelPlural":"RecordActions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordAction/{ID}","describe":"/services/data/v58.0/sobjects/RecordAction/describe","sobject":"/services/data/v58.0/sobjects/RecordAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ub","label":"RecordActionHistory","labelPlural":"RecordActionHistories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordActionHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordActionHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordActionHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordActionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"012","label":"Record + Type","labelPlural":"Record Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"RecordType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordType/{ID}","describe":"/services/data/v58.0/sobjects/RecordType/describe","sobject":"/services/data/v58.0/sobjects/RecordType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hr","label":"Recordset + Filter Criteria","labelPlural":"Recordset Filter Criteria","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteria"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Change Event","labelPlural":"Recordset Filter Criteria Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria History","labelPlural":"Recordset Filter Criteria History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hK","label":"Recordset + Filter Criteria Rule","labelPlural":"Recordset Filter Criteria Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteriaRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteriaRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Rule Change Event","labelPlural":"Recordset Filter Criteria + Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"RecordsetFilterCriteria","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Share","labelPlural":"Recordset Filter Criteria Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0yH","label":"Recordset + Filter Criteria Monitor","labelPlural":"Recordset Filter Criteria Monitors","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFltrCritMonitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Change Event","labelPlural":"Recordset Filter Criteria + Monitor Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Feed","labelPlural":"Recordset Filter Criteria Monitor + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor History","labelPlural":"Recordset Filter Criteria + Monitor History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9V6","label":"Allow + URL for Redirects","labelPlural":"Allow URLs for Redirects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RedirectWhitelistUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/{ID}","describe":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/describe","sobject":"/services/data/v58.0/sobjects/RedirectWhitelistUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cb","label":"Refund","labelPlural":"Refunds","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Refund","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Refund/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Refund/{ID}","describe":"/services/data/v58.0/sobjects/Refund/describe","quickActions":"/services/data/v58.0/sobjects/Refund/quickActions","layouts":"/services/data/v58.0/sobjects/Refund/describe/layouts","sobject":"/services/data/v58.0/sobjects/Refund"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dR","label":"Refund + Line Payment","labelPlural":"Refund Line Payments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"RefundLinePayment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RefundLinePayment/{ID}","describe":"/services/data/v58.0/sobjects/RefundLinePayment/describe","quickActions":"/services/data/v58.0/sobjects/RefundLinePayment/quickActions","layouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/layouts","sobject":"/services/data/v58.0/sobjects/RefundLinePayment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rc","label":"Related + List Column Definition","labelPlural":"Related List Column Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListColumnDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListColumnDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rl","label":"Related + List Definition","labelPlural":"Related List Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jv","label":"Relationship + Domain","labelPlural":"Relationship Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipDomain","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipDomain/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipDomain/describe","sobject":"/services/data/v58.0/sobjects/RelationshipDomain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ju","label":"Relationship","labelPlural":"Relationships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipInfo/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipInfo/describe","sobject":"/services/data/v58.0/sobjects/RelationshipInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VA","label":"Remote + Key Callout Event","labelPlural":"Remote Key Callout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RemoteKeyCalloutEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/describe","sobject":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00O","label":"Report","labelPlural":"Reports","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Report","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Report/{ID}","listviews":"/services/data/v58.0/sobjects/Report/listviews","describe":"/services/data/v58.0/sobjects/Report/describe","sobject":"/services/data/v58.0/sobjects/Report"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yv","label":"Report + Anomaly Event","labelPlural":"Report Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReportAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Z7","label":"Report + Anomaly Event Store","labelPlural":"Report Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReportAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReportAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Anomaly Event Store Feed","labelPlural":"Report Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qu","label":"Report + Event","labelPlural":"Report Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEvent/{ID}","describe":"/services/data/v58.0/sobjects/ReportEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ol","label":"Report + Event Stream","labelPlural":"Report Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ReportEventStream/describe","sobject":"/services/data/v58.0/sobjects/ReportEventStream"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Report","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Feed","labelPlural":"Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hw","label":"Resource + Absence","labelPlural":"Resource Absences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourceAbsence","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsence/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourceAbsence/describe","quickActions":"/services/data/v58.0/sobjects/ResourceAbsence/quickActions","layouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourceAbsence"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Change Event","labelPlural":"Resource Absence Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Feed","labelPlural":"Resource Absence Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence History","labelPlural":"Resource Absence History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kz","label":"Resource + Preference","labelPlural":"Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourcePreference/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourcePreference/describe","layouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourcePreference"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Change Event","labelPlural":"Resource Preference Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Feed","labelPlural":"Resource Preference Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference History","labelPlural":"Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2oN","label":"Return + Order","labelPlural":"Return Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrder/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrder/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Change Event","labelPlural":"Return Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Feed","labelPlural":"Return Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order History","labelPlural":"Return Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sn","label":"Return + Order Line Item","labelPlural":"Return Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Change Event","labelPlural":"Return Order Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Feed","labelPlural":"Return Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item History","labelPlural":"Return Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ReturnOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Share","labelPlural":"Return Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderShare/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Set","labelPlural":"Change Event: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__AttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Attribute Set","labelPlural":"Share: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a00","label":"Attribute + Set","labelPlural":"Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__AttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Value","labelPlural":"Change Event: Attribute Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a01","label":"Attribute + Value","labelPlural":"Attribute Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__BlockPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Block Price","labelPlural":"Change Event: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__BlockPrice__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Block Price","labelPlural":"Share: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a02","label":"Block + Price","labelPlural":"Block Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ColumnMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Column Metadata","labelPlural":"Change Event: Column Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ColumnMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a04","label":"Column + Metadata","labelPlural":"Columns Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ColumnMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Attribute","labelPlural":"Change Event: Configuration + Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Configuration Attribute","labelPlural":"Share: Configuration Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a05","label":"Configuration + Attribute","labelPlural":"Configuration Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ConfigurationAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Rule","labelPlural":"Change Event: Configuration Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a06","label":"Configuration + Rule","labelPlural":"Configuration Rules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Contracted Price","labelPlural":"Change Event: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Contracted Price","labelPlural":"History: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a07","label":"Contracted + Price","labelPlural":"Contracted Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Cost__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Cost","labelPlural":"Change Event: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Cost__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Cost","labelPlural":"Share: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a08","label":"Cost","labelPlural":"Costs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Cost__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomActionCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action Condition","labelPlural":"Change Event: Custom Action + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a09","label":"Custom + Action Condition","labelPlural":"Custom Action Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action","labelPlural":"Change Event: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomAction__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Action","labelPlural":"Share: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0A","label":"Custom + Action","labelPlural":"Custom Actions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomScript__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Script","labelPlural":"Change Event: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomScript__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Script","labelPlural":"Share: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0C","label":"Custom + Script","labelPlural":"Custom Scripts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomScript__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Dimension__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Dimension","labelPlural":"Change Event: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Dimension__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Dimension","labelPlural":"Share: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0D","label":"Price + Dimension","labelPlural":"Price Dimensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountCategory__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Category","labelPlural":"Change Event: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountCategory__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Category","labelPlural":"Share: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0E","label":"Discount + Category","labelPlural":"Discount Categories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountCategory__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Schedule","labelPlural":"Change Event: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Schedule","labelPlural":"History: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Schedule","labelPlural":"Share: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0G","label":"Discount + Schedule","labelPlural":"Discount Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Tier","labelPlural":"Change Event: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Tier","labelPlural":"History: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0H","label":"Discount + Tier","labelPlural":"Discount Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ErrorCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Condition","labelPlural":"Change Event: Error Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0I","label":"Error + Condition","labelPlural":"Error Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteProduct__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Product","labelPlural":"Change Event: Favorite Product","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0J","label":"Favorite + Product","labelPlural":"Favorite Product","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteShare__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Share","labelPlural":"Change Event: Favorite Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0K","label":"Favorite + Share","labelPlural":"Favorite Shares","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Favorite__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite","labelPlural":"Change Event: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Favorite__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Favorite","labelPlural":"Share: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0L","label":"Favorite","labelPlural":"Favorites","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Favorite__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Field Metadata","labelPlural":"Change Event: Field Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0M","label":"Field + Metadata","labelPlural":"Field Metadata","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: FieldSet Metadata","labelPlural":"Change Event: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + FieldSet Metadata","labelPlural":"Share: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0N","label":"FieldSet + Metadata","labelPlural":"FieldSets Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__FieldSetMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Column","labelPlural":"Change Event: Import Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Q","label":"Import + Column","labelPlural":"Import Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportFormat__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Format","labelPlural":"Change Event: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ImportFormat__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Import Format","labelPlural":"Share: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0R","label":"Import + Format","labelPlural":"Import Formats","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ImportFormat__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Install Processor Log","labelPlural":"Change Event: Install Processor + Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Install Processor Log","labelPlural":"Share: Install Processor Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0S","label":"Install + Processor Log","labelPlural":"Install Processor Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__InstallProcessorLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LineColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Line Column","labelPlural":"Change Event: Line Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0T","label":"Line + Column","labelPlural":"Line Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Localization__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Localization","labelPlural":"Change Event: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Localization__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Localization","labelPlural":"Share: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0U","label":"Localization","labelPlural":"Localizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Localization__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Localization__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupData__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Data","labelPlural":"Change Event: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupData__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Data","labelPlural":"Share: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0V","label":"Lookup + Data","labelPlural":"Lookup Data","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupQuery__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Query","labelPlural":"Change Event: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupQuery__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Query","labelPlural":"Share: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0W","label":"Lookup + Query","labelPlural":"Lookup Queries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OptionConstraint__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Option Constraint","labelPlural":"Change Event: Option Constraint","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0X","label":"Option + Constraint","labelPlural":"Option Constraints","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Rate","labelPlural":"Change Event: Order + Product Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Y","label":"Order + Product Consumption Rate","labelPlural":"Order Product Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Schedule","labelPlural":"Change Event: Order + Product Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Product Consumption Schedule","labelPlural":"Share: Order Product Consumption + Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Z","label":"Order + Product Consumption Schedule","labelPlural":"Order Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Action","labelPlural":"Change Event: Price Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0a","label":"Price + Action","labelPlural":"Price Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Condition","labelPlural":"Change Event: Price Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0b","label":"Price + Condition","labelPlural":"Price Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Rule","labelPlural":"Change Event: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Rule","labelPlural":"Share: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0c","label":"Price + Rule","labelPlural":"Price Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PriceRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Schedule","labelPlural":"Change Event: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Schedule","labelPlural":"History: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Schedule","labelPlural":"Share: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0d","label":"Price + Schedule","labelPlural":"Price Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Tier","labelPlural":"Change Event: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Tier","labelPlural":"History: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0e","label":"Price + Tier","labelPlural":"Price Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance Tier","labelPlural":"Change Event: Pricing Guidance + Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance Tier","labelPlural":"History: Pricing Guidance Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0f","label":"Pricing + Guidance Tier","labelPlural":"Pricing Guidance Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance","labelPlural":"Change Event: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance","labelPlural":"History: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PricingGuidance__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Pricing Guidance","labelPlural":"Share: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0g","label":"Pricing + Guidance","labelPlural":"Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Condition","labelPlural":"Change Event: Process Input + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0h","label":"Process + Input Condition","labelPlural":"Process Input Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Values","labelPlural":"Change Event: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Process Input Values","labelPlural":"Share: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0i","label":"Process + Input Values","labelPlural":"Process Input Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInput__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input","labelPlural":"Change Event: Process Input","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0j","label":"Process + Input","labelPlural":"Process Inputs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Action","labelPlural":"Change Event: Product Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0k","label":"Product + Action","labelPlural":"Product Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Attribute Set","labelPlural":"Change Event: Product Attribute + Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Attribute Set","labelPlural":"Share: Product Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0l","label":"Product + Attribute Set","labelPlural":"Product Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Item","labelPlural":"Change Event: Attribute Item","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0m","label":"Attribute + Item","labelPlural":"Attribute Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductFeature__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Feature","labelPlural":"Change Event: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductFeature__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Feature","labelPlural":"Share: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0n","label":"Product + Feature","labelPlural":"Product Features","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductOption__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Option","labelPlural":"Change Event: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductOption__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Option","labelPlural":"Share: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0o","label":"Product + Option","labelPlural":"Product Options","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Rule","labelPlural":"Change Event: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Rule","labelPlural":"Share: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0p","label":"Product + Rule","labelPlural":"Product Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ProductRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Document","labelPlural":"Change Event: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Document","labelPlural":"History: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0q","label":"Quote + Document","labelPlural":"Quote Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Rate","labelPlural":"Change Event: Quote Line + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0r","label":"Quote + Line Consumption Rate","labelPlural":"Quote Line Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Schedule","labelPlural":"Change Event: Quote + Line Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0s","label":"Quote + Line Consumption Schedule","labelPlural":"Quote Line Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Group","labelPlural":"Change Event: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Group","labelPlural":"History: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0t","label":"Quote + Line Group","labelPlural":"Quote Line Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Pricing Guidance","labelPlural":"Change Event: Quote Line + Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Pricing Guidance","labelPlural":"History: Quote Line Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0u","label":"Quote + Line Pricing Guidance","labelPlural":"Quote Line Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line","labelPlural":"Change Event: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line","labelPlural":"History: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0v","label":"Quote + Line","labelPlural":"Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteProcess__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Process","labelPlural":"Change Event: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteProcess__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Process","labelPlural":"Share: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0w","label":"Quote + Process","labelPlural":"Quote Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteProcess__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Template","labelPlural":"Change Event: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Template","labelPlural":"History: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Template","labelPlural":"Share: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0x","label":"Quote + Template","labelPlural":"Quote Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTemplate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTerm__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Term","labelPlural":"Change Event: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTerm__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Term","labelPlural":"Share: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0y","label":"Quote + Term","labelPlural":"Quote Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTerm__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote","labelPlural":"Change Event: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote","labelPlural":"History: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Quote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote","labelPlural":"Share: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0z","label":"Quote","labelPlural":"Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Quote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Quote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RecordJob__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Record Job","labelPlural":"Change Event: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RecordJob__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Record Job","labelPlural":"Share: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a10","label":"Record + Job","labelPlural":"Record Jobs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RelatedContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Additional Document","labelPlural":"Change Event: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RelatedContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Additional Document","labelPlural":"Share: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a12","label":"Additional + Document","labelPlural":"Additional Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchFilter__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Filter","labelPlural":"Change Event: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchFilter__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Filter","labelPlural":"Share: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a14","label":"Search + Filter","labelPlural":"Search Filters","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SearchFilter__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchIndex__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Index","labelPlural":"Change Event: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchIndex__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Index","labelPlural":"Share: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a15","label":"Search + Index","labelPlural":"Search Index","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Solution Group","labelPlural":"Change Event: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Solution Group","labelPlural":"History: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SolutionGroup__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Solution Group","labelPlural":"Share: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a16","label":"Solution + Group","labelPlural":"Solution Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SolutionGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedAsset__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Asset","labelPlural":"Change Event: Subscribed Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a17","label":"Subscribed + Asset","labelPlural":"Subscribed Assets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Quote Line","labelPlural":"Change Event: Subscribed Quote + Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscribed Quote Line","labelPlural":"Share: Subscribed Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a18","label":"Subscribed + Quote Line","labelPlural":"Subscribed Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Rate","labelPlural":"Change Event: Subscription + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a19","label":"Subscription + Consumption Rate","labelPlural":"Subscription Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Schedule","labelPlural":"Change Event: Subscription + Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1A","label":"Subscription + Consumption Schedule","labelPlural":"Subscription Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Subscription__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription","labelPlural":"Change Event: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Subscription__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscription","labelPlural":"Share: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1B","label":"Subscription","labelPlural":"Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SummaryVariable__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Summary Variable","labelPlural":"Change Event: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SummaryVariable__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Summary Variable","labelPlural":"Share: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1C","label":"Summary + Variable","labelPlural":"Summary Variables","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SummaryVariable__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TaxExemptionCertificate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Tax Exemption Certificate","labelPlural":"Change Event: Tax Exemption + Certificate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1D","label":"Tax + Exemption Certificate","labelPlural":"Tax Exemption Certificates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Content","labelPlural":"Change Event: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TemplateContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Template Content","labelPlural":"Share: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1E","label":"Template + Content","labelPlural":"Template Content","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__TemplateContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateSection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Section","labelPlural":"Change Event: Template Section","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1F","label":"Template + Section","labelPlural":"Template Sections","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TermCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Term Condition","labelPlural":"Change Event: Term Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1G","label":"Term + Condition","labelPlural":"Term Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Theme__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Theme","labelPlural":"Change Event: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Theme__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Theme","labelPlural":"Share: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1H","label":"Theme","labelPlural":"Themes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Theme__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Theme__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TimingLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Timing Log","labelPlural":"Change Event: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TimingLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Timing Log","labelPlural":"Share: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1I","label":"Timing + Log","labelPlural":"Timing Logs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__UpgradeSource__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Upgrade Source","labelPlural":"Change Event: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__UpgradeSource__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Upgrade Source","labelPlural":"Share: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1J","label":"Upgrade + Source","labelPlural":"Upgrade Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote Line","labelPlural":"Change Event: Web Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1K","label":"Web + Quote Line","labelPlural":"Web Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote","labelPlural":"Change Event: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Web Quote","labelPlural":"History: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__WebQuote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Web Quote","labelPlural":"Share: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1L","label":"Web + Quote","labelPlural":"Web Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__WebQuote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J4","label":"Service + Provider SAML Attribute","labelPlural":"Service Provider SAML Attributes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SPSamlAttributes","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SPSamlAttributes/{ID}","describe":"/services/data/v58.0/sobjects/SPSamlAttributes/describe","sobject":"/services/data/v58.0/sobjects/SPSamlAttributes"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0LE","label":"SAML + Single Sign-On Setting","labelPlural":"SAML Single Sign-On Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SamlSsoConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SamlSsoConfig/{ID}","describe":"/services/data/v58.0/sobjects/SamlSsoConfig/describe","sobject":"/services/data/v58.0/sobjects/SamlSsoConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hA","label":"Scheduling + Constraint","labelPlural":"Scheduling Constraints","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingConstraint","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraint/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SchedulingConstraint/describe","layouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingConstraint"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SchedulingConstraint","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scheduling + Constraint Share","labelPlural":"Scheduling Constraint Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingConstraintShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraintShare/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingConstraintShare/describe","sobject":"/services/data/v58.0/sobjects/SchedulingConstraintShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0no","label":"Scheduling + Objective","labelPlural":"Scheduling Objectives","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingObjective","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjective/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjective/describe","layouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingObjective"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0np","label":"Scheduling + Objective Parameter","labelPlural":"Scheduling Objective Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingObjectiveParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Md","label":"Scheduling + Rule","labelPlural":"Scheduling Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingRule/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRule/describe","layouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hm","label":"Scheduling + Rule Parameter","labelPlural":"Scheduling Rule Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingRuleParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingRuleParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRuleParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingRuleParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01N","label":"Custom + S-Control","labelPlural":"Custom S-Controls","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Scontrol","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Scontrol/{ID}","describe":"/services/data/v58.0/sobjects/Scontrol/describe","sobject":"/services/data/v58.0/sobjects/Scontrol"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01f","label":"Scorecard","labelPlural":"Scorecards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Scorecard","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Scorecard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Scorecard/{ID}","describe":"/services/data/v58.0/sobjects/Scorecard/describe","layouts":"/services/data/v58.0/sobjects/Scorecard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Scorecard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qn","label":"Scorecard + Association","labelPlural":"Scorecard Associations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ScorecardAssociation","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardAssociation/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardAssociation/describe","layouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardAssociation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Om","label":"Scorecard + Metric","labelPlural":"Scorecard Metrics","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ScorecardMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardMetric/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardMetric/describe","layouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardMetric"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Scorecard","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scorecard + Share","labelPlural":"Scorecard Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ScorecardShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ScorecardShare/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardShare/describe","sobject":"/services/data/v58.0/sobjects/ScorecardShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4co","label":"Search + Layout","labelPlural":"Search Layouts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SearchLayout","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchLayout/{ID}","describe":"/services/data/v58.0/sobjects/SearchLayout/describe","sobject":"/services/data/v58.0/sobjects/SearchLayout"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MD","label":"Promoted + Search Term","labelPlural":"Promoted Search Terms","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SearchPromotionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchPromotionRule/{ID}","describe":"/services/data/v58.0/sobjects/SearchPromotionRule/describe","layouts":"/services/data/v58.0/sobjects/SearchPromotionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SearchPromotionRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09v","label":"Security + Custom Baseline","labelPlural":"Security Custom Baselines","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SecurityCustomBaseline","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SecurityCustomBaseline/{ID}","describe":"/services/data/v58.0/sobjects/SecurityCustomBaseline/describe","sobject":"/services/data/v58.0/sobjects/SecurityCustomBaseline"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0q6","label":"Seller","labelPlural":"Sellers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Seller","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Seller/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Seller/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Seller/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Seller/describe","layouts":"/services/data/v58.0/sobjects/Seller/describe/layouts","sobject":"/services/data/v58.0/sobjects/Seller"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Seller","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + History","labelPlural":"Seller History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerHistory/{ID}","describe":"/services/data/v58.0/sobjects/SellerHistory/describe","sobject":"/services/data/v58.0/sobjects/SellerHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Seller","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + Share","labelPlural":"Seller Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerShare/{ID}","describe":"/services/data/v58.0/sobjects/SellerShare/describe","sobject":"/services/data/v58.0/sobjects/SellerShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sentry_Active_Config__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sentry Active Config","labelPlural":"Change Event: Sentry Active Config","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1S","label":"Sentry + Active Config","labelPlural":"Sentry Active Config","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe","quickActions":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m00","label":"Sentry + Config","labelPlural":"Sentry Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sentry_Config__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Config__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe","layouts":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Config__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"e00","label":"Sentry + Error","labelPlural":"Sentry Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Error__e","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Error__e/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Error__e/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Error__e/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Error__e"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jR","label":"Serialized + Product","labelPlural":"Serialized Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProduct","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProduct/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProduct/describe","quickActions":"/services/data/v58.0/sobjects/SerializedProduct/quickActions","layouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProduct"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Feed","labelPlural":"Serialized Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product History","labelPlural":"Serialized Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SerializedProduct","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Share","labelPlural":"Serialized Product Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductShare/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductShare/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jM","label":"Serialized + Product Transaction","labelPlural":"Serialized Product Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProductTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe","layouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProductTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction Feed","labelPlural":"Serialized Product Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction History","labelPlural":"Serialized Product Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08p","label":"Service + Appointment","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Share","labelPlural":"Service Appointment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Status Value","labelPlural":"Service Appointment Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"810","label":"Service + Contract","labelPlural":"Service Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceContract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceContract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceContract/describe","quickActions":"/services/data/v58.0/sobjects/ServiceContract/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceContract/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceContract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Change Event","labelPlural":"Service Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Feed","labelPlural":"Service Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract History","labelPlural":"Service Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceContract","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Share","labelPlural":"Service Contract Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cr","label":"Service + Crew","labelPlural":"Service Crews","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrew","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrew/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrew/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrew/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrew"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Change Event","labelPlural":"Service Crew Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Feed","labelPlural":"Service Crew Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew History","labelPlural":"Service Crew History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cm","label":"Service + Crew Member","labelPlural":"Service Crew Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrewMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrewMember/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrewMember/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrewMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Change Event","labelPlural":"Service Crew Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Feed","labelPlural":"Service Crew Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member History","labelPlural":"Service Crew Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceCrew","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Share","labelPlural":"Service Crew Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SR","label":"Service + Report","labelPlural":"Service Reports","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReport/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReport/describe","sobject":"/services/data/v58.0/sobjects/ServiceReport"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Change Event","labelPlural":"Service Report Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report History","labelPlural":"Service Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SL","label":"Service + Report Layout","labelPlural":"Service Report Layouts","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ServiceReportLayout","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayout/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportLayout/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayout"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReportLayout","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Layout Change Event","labelPlural":"Service Report Layout Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportLayoutChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hn","label":"Service + Resource","labelPlural":"Service Resources","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResource/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResource/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hy","label":"Resource + Capacity","labelPlural":"Resource Capacities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceCapacity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourceCapacity/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Change Event","labelPlural":"Resource Capacity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Feed","labelPlural":"Resource Capacity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity History","labelPlural":"Resource Capacity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Change Event","labelPlural":"Service Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Feed","labelPlural":"Service Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource History","labelPlural":"Service Resource History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0l6","label":"Service + Resource Preference","labelPlural":"Service Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreference/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourcePreference/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreference"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ServiceResourcePreference not found in section + StandardFeedLabel","labelPlural":"__MISSING LABEL__ PropertyFile - val ServiceResourcePreference + not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference History","labelPlural":"Service Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResourcePreference","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference Share","labelPlural":"Service Resource Preference Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResource","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Share","labelPlural":"Service Resource Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hv","label":"Service + Resource Skill","labelPlural":"Service Resource Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe","layouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Change Event","labelPlural":"Service Resource Skill Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Feed","labelPlural":"Service Resource Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill History","labelPlural":"Service Resource Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9gd","label":"Service + Setup Provisioning","labelPlural":"Service Setup Provisionings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceSetupProvisioning","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/{ID}","describe":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/describe","sobject":"/services/data/v58.0/sobjects/ServiceSetupProvisioning"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hh","label":"Service + Territory","labelPlural":"Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritory/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritory/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritory/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Change Event","labelPlural":"Service Territory Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Feed","labelPlural":"Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory History","labelPlural":"Service Territory History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1Sl","label":"Service + Territory Location","labelPlural":"Service Territory Locations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Change Event","labelPlural":"Service Territory Location + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Feed","labelPlural":"Service Territory Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Territory + Location History","labelPlural":"Territory Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hu","label":"Service + Territory Member","labelPlural":"Service Territory Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritoryMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Change Event","labelPlural":"Service Territory Member Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Feed","labelPlural":"Service Territory Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member History","labelPlural":"Service Territory Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceTerritory","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Share","labelPlural":"Service Territory Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zh","label":"Session + Hijacking Event","labelPlural":"Session Hijacking Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SessionHijackingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SessionHijackingEvent/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zj","label":"Session + Hijacking Event Store","labelPlural":"Session Hijacking Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SessionHijackingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/SessionHijackingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SessionHijackingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Session + Hijacking Event Store Feed","labelPlural":"Session Hijacking Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Pa","label":"Session + Permission Set Activation","labelPlural":"Session Permission Set Activations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SessionPermSetActivation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionPermSetActivation/{ID}","describe":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe","layouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionPermSetActivation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Ys","label":"Setup + Assistant Step","labelPlural":"Setup Assistant Steps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAssistantStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAssistantStep/{ID}","describe":"/services/data/v58.0/sobjects/SetupAssistantStep/describe","sobject":"/services/data/v58.0/sobjects/SetupAssistantStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ym","label":"Setup + Audit Trail Entry","labelPlural":"Setup Audit Trail Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAuditTrail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAuditTrail/{ID}","describe":"/services/data/v58.0/sobjects/SetupAuditTrail/describe","sobject":"/services/data/v58.0/sobjects/SetupAuditTrail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J0","label":"Setup + Entity Access","labelPlural":"Setup Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/SetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/SetupEntityAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m01","label":"Setup + Configuration Data","labelPlural":"Setup Configuration Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Configuration_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m02","label":"Setup + Connection Data","labelPlural":"Setup Connection Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Connection_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Data__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Data","labelPlural":"Change Event: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Setup_Data__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Setup Data","labelPlural":"Share: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__Share/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Data__Share/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1T","label":"Setup + Data","labelPlural":"Setup Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Data__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Setup_Data__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Data__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Data__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Settings__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Settings","labelPlural":"Change Event: Setup Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1U","label":"Setup + Settings","labelPlural":"Setup Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__c/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Settings__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Settings__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Settings__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Settings__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0a0","label":"Shift","labelPlural":"Shifts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shift","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shift/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shift/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shift/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shift/describe","quickActions":"/services/data/v58.0/sobjects/Shift/quickActions","layouts":"/services/data/v58.0/sobjects/Shift/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shift"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Change Event","labelPlural":"Shift Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Feed","labelPlural":"Shift Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + History","labelPlural":"Shift History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w1","label":"Shift + Pattern","labelPlural":"Shift Patterns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPattern","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPattern/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShiftPattern/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPattern/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPattern"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Change Event","labelPlural":"Shift Pattern Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w2","label":"Shift + Pattern Entry","labelPlural":"Shift Pattern Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPatternEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntry/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPatternEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Change Event","labelPlural":"Shift Pattern Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Feed","labelPlural":"Shift Pattern Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry History","labelPlural":"Shift Pattern Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Feed","labelPlural":"Shift Pattern Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern History","labelPlural":"Shift Pattern History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftPattern","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Share","labelPlural":"Shift Pattern Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shift","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Share","labelPlural":"Shift Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Status Value","labelPlural":"Shift Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftStatus/{ID}","describe":"/services/data/v58.0/sobjects/ShiftStatus/describe","sobject":"/services/data/v58.0/sobjects/ShiftStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iJ","label":"Shift + Template","labelPlural":"Shift Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplate/describe","layouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Change Event","labelPlural":"Shift Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Share","labelPlural":"Shift Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OB","label":"Shipment","labelPlural":"Shipments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shipment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shipment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shipment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shipment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shipment/describe","quickActions":"/services/data/v58.0/sobjects/Shipment/quickActions","layouts":"/services/data/v58.0/sobjects/Shipment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shipment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Change Event","labelPlural":"Shipment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShipmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShipmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShipmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Feed","labelPlural":"Shipment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + History","labelPlural":"Shipment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ob","label":"Shipment + Item","labelPlural":"Shipment Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ShipmentItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShipmentItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShipmentItem/describe","quickActions":"/services/data/v58.0/sobjects/ShipmentItem/quickActions","layouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShipmentItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shipment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Share","labelPlural":"Shipment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentShare/describe","sobject":"/services/data/v58.0/sobjects/ShipmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DM","label":"Site","labelPlural":"Sites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Site","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Site/{ID}","describe":"/services/data/v58.0/sobjects/Site/describe","sobject":"/services/data/v58.0/sobjects/Site"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GV","label":"Site + Detail","labelPlural":"Site Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteDetail/{ID}","describe":"/services/data/v58.0/sobjects/SiteDetail/describe","sobject":"/services/data/v58.0/sobjects/SiteDetail"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site","labelPlural":"Site","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteFeed/{ID}","describe":"/services/data/v58.0/sobjects/SiteFeed/describe","sobject":"/services/data/v58.0/sobjects/SiteFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site + History","labelPlural":"Site History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteHistory/{ID}","describe":"/services/data/v58.0/sobjects/SiteHistory/describe","sobject":"/services/data/v58.0/sobjects/SiteHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xs","label":"Trusted + Domains for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteIframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H0","label":"Site + Redirect Mapping","labelPlural":"Site Redirect Mapping","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteRedirectMapping","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteRedirectMapping/{ID}","describe":"/services/data/v58.0/sobjects/SiteRedirectMapping/describe","sobject":"/services/data/v58.0/sobjects/SiteRedirectMapping"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C5","label":"Skill","labelPlural":"Skills","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Skill","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Skill/{ID}","describe":"/services/data/v58.0/sobjects/Skill/describe","sobject":"/services/data/v58.0/sobjects/Skill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Skill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Change Event","labelPlural":"Skill Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hx","label":"Skill + Requirement","labelPlural":"Skill Requirements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SkillRequirement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SkillRequirement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SkillRequirement/describe","layouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/layouts","sobject":"/services/data/v58.0/sobjects/SkillRequirement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Change Event","labelPlural":"Skill Requirement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Feed","labelPlural":"Skill Requirement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementFeed/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementFeed/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement History","labelPlural":"Skill Requirement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementHistory/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementHistory/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"13B","label":"Skill + Type","labelPlural":"Skill Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillType/{ID}","describe":"/services/data/v58.0/sobjects/SkillType/describe","sobject":"/services/data/v58.0/sobjects/SkillType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"552","label":"Entitlement + Process","labelPlural":"Entitlement Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SlaProcess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SlaProcess/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SlaProcess/{ID}","describe":"/services/data/v58.0/sobjects/SlaProcess/describe","layouts":"/services/data/v58.0/sobjects/SlaProcess/describe/layouts","sobject":"/services/data/v58.0/sobjects/SlaProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"501","label":"Solution","labelPlural":"Solutions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Solution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Solution/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Solution/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Solution/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Solution/describe","layouts":"/services/data/v58.0/sobjects/Solution/describe/layouts","sobject":"/services/data/v58.0/sobjects/Solution"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Feed","labelPlural":"Solution Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SolutionFeed/describe","sobject":"/services/data/v58.0/sobjects/SolutionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + History","labelPlural":"Solution History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SolutionHistory/describe","sobject":"/services/data/v58.0/sobjects/SolutionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Status Value","labelPlural":"Solution Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionStatus/{ID}","describe":"/services/data/v58.0/sobjects/SolutionStatus/describe","sobject":"/services/data/v58.0/sobjects/SolutionStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xv","label":"Source + Change Notification","labelPlural":"Source Change Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SourceChangeNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SourceChangeNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/SourceChangeNotification/eventSchema","describe":"/services/data/v58.0/sobjects/SourceChangeNotification/describe","sobject":"/services/data/v58.0/sobjects/SourceChangeNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ST","label":"Stamp","labelPlural":"Stamps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stamp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stamp/{ID}","describe":"/services/data/v58.0/sobjects/Stamp/describe","sobject":"/services/data/v58.0/sobjects/Stamp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SA","label":"Stamp + Assignment","labelPlural":"Stamp Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StampAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StampAssignment/{ID}","describe":"/services/data/v58.0/sobjects/StampAssignment/describe","sobject":"/services/data/v58.0/sobjects/StampAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"081","label":"Static + Resource","labelPlural":"Static Resources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"StaticResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StaticResource/{ID}","describe":"/services/data/v58.0/sobjects/StaticResource/describe","sobject":"/services/data/v58.0/sobjects/StaticResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0M6","label":"Streaming + Channel","labelPlural":"Streaming Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"StreamingChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/StreamingChannel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/StreamingChannel/describe","layouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/layouts","push":"/services/data/v58.0/sobjects/StreamingChannel/{ID}/push","sobject":"/services/data/v58.0/sobjects/StreamingChannel"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"StreamingChannel","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Streaming + Channel Share","labelPlural":"Streaming Channel Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StreamingChannelShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StreamingChannelShare/{ID}","describe":"/services/data/v58.0/sobjects/StreamingChannelShare/describe","sobject":"/services/data/v58.0/sobjects/StreamingChannelShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Stripe_Connection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Stripe_Connection","labelPlural":"Change Event: Stripe_Connection","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1V","label":"Stripe_Connection","labelPlural":"Stripe_Connection","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__c/{ID}","describe":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe","quickActions":"/services/data/v58.0/sobjects/Stripe_Connection__c/quickActions","layouts":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sW","label":"Swarm","labelPlural":"Swarms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Swarm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Swarm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Swarm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Swarm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Swarm/describe","quickActions":"/services/data/v58.0/sobjects/Swarm/quickActions","layouts":"/services/data/v58.0/sobjects/Swarm/describe/layouts","sobject":"/services/data/v58.0/sobjects/Swarm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Feed","labelPlural":"Swarm Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + History","labelPlural":"Swarm History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sR","label":"Swarm + Member","labelPlural":"Swarm Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SwarmMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SwarmMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SwarmMember/describe","quickActions":"/services/data/v58.0/sobjects/SwarmMember/quickActions","layouts":"/services/data/v58.0/sobjects/SwarmMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/SwarmMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Feed","labelPlural":"Swarm Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member History","labelPlural":"Swarm Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SwarmMember","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Share","labelPlural":"Swarm Member Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Swarm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Share","labelPlural":"Swarm Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sync_Record__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sync Record","labelPlural":"Change Event: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Sync_Record__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Sync Record","labelPlural":"Share: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__Share/{ID}","describe":"/services/data/v58.0/sobjects/Sync_Record__Share/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1W","label":"Sync + Record","labelPlural":"Sync Management","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sync_Record__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Sync_Record__c/describe","quickActions":"/services/data/v58.0/sobjects/Sync_Record__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sync_Record__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0KD","label":"Tab + Definition","labelPlural":"Tab Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TabDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TabDefinition/{ID}","describe":"/services/data/v58.0/sobjects/TabDefinition/describe","sobject":"/services/data/v58.0/sobjects/TabDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00T","label":"Task","labelPlural":"Tasks","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Task","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Task/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Task/{ID}","describe":"/services/data/v58.0/sobjects/Task/describe","quickActions":"/services/data/v58.0/sobjects/Task/quickActions","layouts":"/services/data/v58.0/sobjects/Task/describe/layouts","sobject":"/services/data/v58.0/sobjects/Task"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Change Event","labelPlural":"Task Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TaskChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TaskChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TaskChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Feed","labelPlural":"Task Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskFeed/{ID}","describe":"/services/data/v58.0/sobjects/TaskFeed/describe","sobject":"/services/data/v58.0/sobjects/TaskFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Priority Value","labelPlural":"Task Priority Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskPriority","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskPriority/{ID}","describe":"/services/data/v58.0/sobjects/TaskPriority/describe","sobject":"/services/data/v58.0/sobjects/TaskPriority"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Status Value","labelPlural":"Task Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskStatus/{ID}","describe":"/services/data/v58.0/sobjects/TaskStatus/describe","sobject":"/services/data/v58.0/sobjects/TaskStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UT","label":"Tenant + Usage Entitlement","labelPlural":"Tenant Usage Entitlements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"TenantUsageEntitlement","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TenantUsageEntitlement/{ID}","describe":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe","layouts":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/TenantUsageEntitlement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hd","label":"Test + Suite Membership","labelPlural":"Test Suite Memberships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TestSuiteMembership","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TestSuiteMembership/{ID}","describe":"/services/data/v58.0/sobjects/TestSuiteMembership/describe","sobject":"/services/data/v58.0/sobjects/TestSuiteMembership"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jr","label":"Third + Party Account Link","labelPlural":"Third Party Account Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThirdPartyAccountLink","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/{ID}","describe":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/describe","sobject":"/services/data/v58.0/sobjects/ThirdPartyAccountLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hY","label":"Threat + Detection Feedback","labelPlural":"Threat Detection Feedback","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ThreatDetectionFeedback","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe","quickActions":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/quickActions","layouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/layouts","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedback"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ThreatDetectionFeedback","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Threat + Detection Feedback Feed","labelPlural":"Threat Detection Feedback Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThreatDetectionFeedbackFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/describe","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ts","label":"Time + Sheet","labelPlural":"Time Sheets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheet/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheet/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheet/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheet"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Change Event","labelPlural":"Time Sheet Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1te","label":"Time + Sheet Entry","labelPlural":"Time Sheet Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheetEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheetEntry/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheetEntry/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheetEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Change Event","labelPlural":"Time Sheet Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Feed","labelPlural":"Time Sheet Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry History","labelPlural":"Time Sheet Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Feed","labelPlural":"Time Sheet Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet History","labelPlural":"Time Sheet History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TimeSheet","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Share","labelPlural":"Time Sheet Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetShare/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetShare/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gj","label":"Time + Slot","labelPlural":"Time Slots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/TimeSlot/describe","layouts":"/services/data/v58.0/sobjects/TimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSlot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Slot Change Event","labelPlural":"Time Slot Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSlotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSlotChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jz","label":"Goal","labelPlural":"Goals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoal","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoal/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoal/describe","sobject":"/services/data/v58.0/sobjects/TodayGoal"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TodayGoal","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Goal + Share","labelPlural":"Goal Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoalShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoalShare/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoalShare/describe","sobject":"/services/data/v58.0/sobjects/TodayGoalShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TO","label":"Topic","labelPlural":"Topics","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Topic","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Topic/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Topic/{ID}","describe":"/services/data/v58.0/sobjects/Topic/describe","layouts":"/services/data/v58.0/sobjects/Topic/describe/layouts","sobject":"/services/data/v58.0/sobjects/Topic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FT","label":"Topic + Assignment","labelPlural":"Topic Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicAssignment/{ID}","describe":"/services/data/v58.0/sobjects/TopicAssignment/describe","sobject":"/services/data/v58.0/sobjects/TopicAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Topic","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Topic + Feed","labelPlural":"Topic Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicFeed/{ID}","describe":"/services/data/v58.0/sobjects/TopicFeed/describe","sobject":"/services/data/v58.0/sobjects/TopicFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0te","label":"Topic + User Event","labelPlural":"Topic User Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicUserEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicUserEvent/{ID}","describe":"/services/data/v58.0/sobjects/TopicUserEvent/describe","sobject":"/services/data/v58.0/sobjects/TopicUserEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0NI","label":"Transaction + Security Policy","labelPlural":"Transaction Security Policies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TransactionSecurityPolicy","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/{ID}","describe":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/describe","sobject":"/services/data/v58.0/sobjects/TransactionSecurityPolicy"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01h","label":"Language + Translation","labelPlural":"Language Translation","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Translation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Translation/{ID}","describe":"/services/data/v58.0/sobjects/Translation/describe","sobject":"/services/data/v58.0/sobjects/Translation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5pL","label":"Travel + Mode","labelPlural":"Travel Modes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TravelMode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TravelMode/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TravelMode/describe","quickActions":"/services/data/v58.0/sobjects/TravelMode/quickActions","layouts":"/services/data/v58.0/sobjects/TravelMode/describe/layouts","sobject":"/services/data/v58.0/sobjects/TravelMode"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TravelMode","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Feed","labelPlural":"Travel Mode Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeFeed/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeFeed/describe","sobject":"/services/data/v58.0/sobjects/TravelModeFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TravelMode","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Share","labelPlural":"Travel Mode Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeShare/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeShare/describe","sobject":"/services/data/v58.0/sobjects/TravelModeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gp","label":"Ui + Formula Criterion","labelPlural":"Ui Formula Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaCriterion/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09t","label":"Ui + Formula Rule","labelPlural":"Ui Formula Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaRule/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaRule/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Undecided + Event Relation","labelPlural":"Undecided Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UndecidedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UndecidedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/UndecidedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/UndecidedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hE","label":"Unit + of Measure","labelPlural":"Units of Measure","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UnitOfMeasure","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasure/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UnitOfMeasure/describe","layouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/layouts","sobject":"/services/data/v58.0/sobjects/UnitOfMeasure"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UnitOfMeasure","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Unit + of Measure Share","labelPlural":"Unit of Measure Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UnitOfMeasureShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasureShare/{ID}","describe":"/services/data/v58.0/sobjects/UnitOfMeasureShare/describe","sobject":"/services/data/v58.0/sobjects/UnitOfMeasureShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uw","label":"URI + Event","labelPlural":"URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEvent/{ID}","describe":"/services/data/v58.0/sobjects/UriEvent/describe","sobject":"/services/data/v58.0/sobjects/UriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ux","label":"URI + Event Stream ","labelPlural":"URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/UriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/UriEventStream/describe","sobject":"/services/data/v58.0/sobjects/UriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"005","label":"User","labelPlural":"Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"User","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/User/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/User/{ID}","namedLayouts":"/services/data/v58.0/sobjects/User/describe/namedLayouts/{LayoutName}","passwordUtilities":"/services/data/v58.0/sobjects/User/{ID}/password","describe":"/services/data/v58.0/sobjects/User/describe","quickActions":"/services/data/v58.0/sobjects/User/quickActions","layouts":"/services/data/v58.0/sobjects/User/describe/layouts","sobject":"/services/data/v58.0/sobjects/User"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ds","label":"Last + Used App","labelPlural":"Last Used App","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppInfo/{ID}","describe":"/services/data/v58.0/sobjects/UserAppInfo/describe","sobject":"/services/data/v58.0/sobjects/UserAppInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nw","label":"UserAppMenuCustomization","labelPlural":"UserAppMenuCustomizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomization/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomization/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomization"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserAppMenuCustomization","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"UserAppMenuCustomization + Share","labelPlural":"UserAppMenuCustomization Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomizationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07p","label":"Application","labelPlural":"Applications","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UserAppMenuItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuItem/describe","layouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserAppMenuItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Change Event","labelPlural":"User Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/UserChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/UserChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/UserChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UV","label":"User + Email Preferred Person","labelPlural":"User Email Preferred People","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPerson","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPerson"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserEmailPreferredPerson","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Email Preferred Person Share","labelPlural":"User Email Preferred Person Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPersonShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07u","label":"User + Entity Access","labelPlural":"User Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserEntityAccess"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Feed","labelPlural":"User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFeed/{ID}","describe":"/services/data/v58.0/sobjects/UserFeed/describe","sobject":"/services/data/v58.0/sobjects/UserFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fp","label":"User + Field Access","labelPlural":"User Field Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFieldAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFieldAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserFieldAccess/describe","sobject":"/services/data/v58.0/sobjects/UserFieldAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"100","label":"User + License","labelPlural":"User Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserLicense/describe","sobject":"/services/data/v58.0/sobjects/UserLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Na","label":"User + List View","labelPlural":"User List View","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListView/{ID}","describe":"/services/data/v58.0/sobjects/UserListView/describe","sobject":"/services/data/v58.0/sobjects/UserListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JU","label":"User + List View Criteria","labelPlural":"User List View Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListViewCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListViewCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UserListViewCriterion/describe","sobject":"/services/data/v58.0/sobjects/UserListViewCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yw","label":"User + Login","labelPlural":"User Login","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLogin/{ID}","describe":"/services/data/v58.0/sobjects/UserLogin/describe","sobject":"/services/data/v58.0/sobjects/UserLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"051","label":"User + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User + Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User + Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User + Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User + Provisioning Account Staging","labelPlural":"User Provisioning Account Stagings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccountStaging","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccountStaging/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccountStaging/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccountStaging"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HX","label":"User + Provisioning Mock Target","labelPlural":"User Provisioning Mock Targets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvMockTarget","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvMockTarget/{ID}","describe":"/services/data/v58.0/sobjects/UserProvMockTarget/describe","sobject":"/services/data/v58.0/sobjects/UserProvMockTarget"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Je","label":"User + Provisioning Config","labelPlural":"User Provisioning Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningConfig/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningConfig/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hs","label":"User + Provisioning Log","labelPlural":"User Provisioning Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningLog/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningLog/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HP","label":"User + Provisioning Request","labelPlural":"User Provisioning Requests","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe","layouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserProvisioningRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Provisioning Request Share","labelPlural":"User Provisioning Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Record Access","labelPlural":"User Record Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserRecordAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserRecordAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserRecordAccess/describe","sobject":"/services/data/v58.0/sobjects/UserRecordAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00E","label":"Role","labelPlural":"Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserRole/{ID}","describe":"/services/data/v58.0/sobjects/UserRole/describe","layouts":"/services/data/v58.0/sobjects/UserRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g2","label":"User + Setup Entity Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserSetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserSetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserSetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserSetupEntityAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"User","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0N2","label":"User + Share","labelPlural":"User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserShare/{ID}","describe":"/services/data/v58.0/sobjects/UserShare/describe","sobject":"/services/data/v58.0/sobjects/UserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qt","label":"Identity + Verification History","labelPlural":"Identity Verification History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VerificationHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VerificationHistory/{ID}","describe":"/services/data/v58.0/sobjects/VerificationHistory/describe","sobject":"/services/data/v58.0/sobjects/VerificationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OP","label":"Visualforce + Access Metric","labelPlural":"Visualforce Access Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VisualforceAccessMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/{ID}","describe":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/describe","sobject":"/services/data/v58.0/sobjects/VisualforceAccessMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"083","label":"Vote","labelPlural":"Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Vote","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Vote/{ID}","describe":"/services/data/v58.0/sobjects/Vote/describe","sobject":"/services/data/v58.0/sobjects/Vote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4V3","label":"Warranty + Term","labelPlural":"Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WarrantyTerm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/WarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/WarrantyTerm"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Change Event","labelPlural":"Warranty Term Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Feed","labelPlural":"Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term History","labelPlural":"Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WarrantyTerm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Share","labelPlural":"Warranty Term Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermShare/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermShare/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00b","label":"Custom + Button or Link","labelPlural":"Custom Buttons or Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WebLink","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WebLink/{ID}","describe":"/services/data/v58.0/sobjects/WebLink/describe","sobject":"/services/data/v58.0/sobjects/WebLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W5","label":"Access","labelPlural":"Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccess/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccess/describe","sobject":"/services/data/v58.0/sobjects/WorkAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkAccess","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Access + Share","labelPlural":"Access Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccessShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccessShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccessShare/describe","sobject":"/services/data/v58.0/sobjects/WorkAccessShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W2","label":"Badge + Received","labelPlural":"Badges Received","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadge","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadge/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadge/describe","layouts":"/services/data/v58.0/sobjects/WorkBadge/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadge"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W1","label":"Badge","labelPlural":"Badges","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadgeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/WorkBadgeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Feed","labelPlural":"Badge Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + History","labelPlural":"Badge History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkBadgeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work + Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order History","labelPlural":"Work Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1WL","label":"Work + Order Line Item","labelPlural":"Work Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/approvalLayouts","workOrderLineItemRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}/suggestedArticles","describe":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/layouts","workOrderLineItemArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/suggestedArticles","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Change Event","labelPlural":"Work Order Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Feed","labelPlural":"Work Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item History","labelPlural":"Work Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Status Value","labelPlural":"Work Order Line Item Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Share","labelPlural":"Work Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderShare/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Status Value","labelPlural":"Work Order Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gq","label":"Work + Plan","labelPlural":"Work Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlan/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlan/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Change Event","labelPlural":"Work Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Feed","labelPlural":"Work Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan History","labelPlural":"Work Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gr","label":"Work + Plan Selection Rule","labelPlural":"Work Plan Selection Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanSelectionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Change Event","labelPlural":"Work Plan Selection Rule + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Feed","labelPlural":"Work Plan Selection Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule History","labelPlural":"Work Plan Selection Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanSelectionRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Share","labelPlural":"Work Plan Selection Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Share","labelPlural":"Work Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7Iy","label":"Work + Plan Template","labelPlural":"Work Plan Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Change Event","labelPlural":"Work Plan Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8xu","label":"Work + Plan Template Entry","labelPlural":"Work Plan Template Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplateEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Change Event","labelPlural":"Work Plan Template Entry + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Feed","labelPlural":"Work Plan Template Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry History","labelPlural":"Work Plan Template Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Feed","labelPlural":"Work Plan Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template History","labelPlural":"Work Plan Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Share","labelPlural":"Work Plan Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hF","label":"Work + Step","labelPlural":"Work Steps","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStep/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStep/describe","quickActions":"/services/data/v58.0/sobjects/WorkStep/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStep/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStep"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Change Event","labelPlural":"Work Step Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Feed","labelPlural":"Work Step Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step History","labelPlural":"Work Step History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Status Value","labelPlural":"Work Step Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkStepStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4L0","label":"Work + Step Template","labelPlural":"Work Step Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStepTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStepTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkStepTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStepTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Change Event","labelPlural":"Work Step Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Feed","labelPlural":"Work Step Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template History","labelPlural":"Work Step Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkStepTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Share","labelPlural":"Work Step Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W0","label":"Thanks","labelPlural":"Thanks","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"WorkThanks","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanks/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanks/describe","layouts":"/services/data/v58.0/sobjects/WorkThanks/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkThanks"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkThanks","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Thanks + Share","labelPlural":"Thanks Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkThanksShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanksShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanksShare/describe","sobject":"/services/data/v58.0/sobjects/WorkThanksShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08q","label":"Work + Type","labelPlural":"Work Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkType/describe","quickActions":"/services/data/v58.0/sobjects/WorkType/quickActions","layouts":"/services/data/v58.0/sobjects/WorkType/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkType"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Change Event","labelPlural":"Work Type Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Feed","labelPlural":"Work Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VS","label":"Work + Type Group","labelPlural":"Work Type Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroup/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroup/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Feed","labelPlural":"Work Type Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group History","labelPlural":"Work Type Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Wz","label":"Work + Type Group Member","labelPlural":"Work Type Group Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroupMember/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member Feed","labelPlural":"Work Type Group Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member History","labelPlural":"Work Type Group Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkTypeGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2kQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:05 GMT + Set-Cookie: + - BrowserId=g2G6RWxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:05 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=416/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=3000.0&recurring[interval_count]=3&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2kQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2kQAA&product=prod_OpaR7y3lGd8HT0 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - c2cde872-3e5a-4846-a364-8e62e9c4b435 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:06 GMT + Content-Type: + - application/json + Content-Length: + - '844' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - c2cde872-3e5a-4846-a364-8e62e9c4b435 + Original-Request: + - req_VEQmdsvZRqE0FG + Request-Id: + - req_VEQmdsvZRqE0FG + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGrIsgf92XbAOcVNZIutY", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479925, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2kQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2kQAA" + }, + "nickname": null, + "product": "prod_OpaR7y3lGd8HT0", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 3, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 3000, + "unit_amount_decimal": "3000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2kQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vGrIsgf92XbAOcVNZIutY"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:06 GMT + Set-Cookie: + - BrowserId=g6UElGxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:06 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=412/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2kQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:06 GMT + Set-Cookie: + - BrowserId=g-Hmt2xPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:06 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=413/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/products/prod_OpaR7y3lGd8HT0 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_VEQmdsvZRqE0FG","request_duration_ms":245}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:06 GMT + Content-Type: + - application/json + Content-Length: + - '761' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_UjqfIhvNnNIyrY + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaR7y3lGd8HT0", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479923, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNkQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNkQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-10", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479923, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNkQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:06 GMT + Set-Cookie: + - BrowserId=hCBPMmxPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:06 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=408/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2jQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:07 GMT + Set-Cookie: + - BrowserId=hDf1SmxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:07 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=407/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2jQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:07 GMT + Set-Cookie: + - BrowserId=hFSltWxPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:07 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=411/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=3000.0&recurring[interval_count]=3&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2jQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2jQAA&product=prod_OpaR7y3lGd8HT0 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_UjqfIhvNnNIyrY","request_duration_ms":233}}' + Idempotency-Key: + - cecd4265-8fae-4f6a-8015-86acbd442c1d + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:07 GMT + Content-Type: + - application/json + Content-Length: + - '844' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - cecd4265-8fae-4f6a-8015-86acbd442c1d + Original-Request: + - req_w3wH9safCsvese + Request-Id: + - req_w3wH9safCsvese + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGtIsgf92XbAOLa3YJeGP", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479927, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2jQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2jQAA" + }, + "nickname": null, + "product": "prod_OpaR7y3lGd8HT0", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 3, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 3000, + "unit_amount_decimal": "3000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2jQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vGtIsgf92XbAOLa3YJeGP"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:07 GMT + Set-Cookie: + - BrowserId=hJphaWxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:07 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=413/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2jQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:08 GMT + Set-Cookie: + - BrowserId=hNCzCmxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=414/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20OrderItem%0AWHERE%20OrderId%20=%20%278018N00000032bzQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:08 GMT + Set-Cookie: + - BrowserId=hOuOL2xPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=413/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2kQAA"},"Id":"8028N0000005p2kQAA"},{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2jQAA"},"Id":"8028N0000005p2jQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2kQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:08 GMT + Set-Cookie: + - BrowserId=hQPRBmxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=409/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:06 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2kQAA"},"Id":"8028N0000005p2kQAA","Product2Id":"01t8N000003DfNkQAK","IsDeleted":false,"OrderId":"8018N00000032bzQAA","PricebookEntryId":"01u8N000003e0MFQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":120.0,"ListPrice":120.0,"TotalPrice":120.0,"ServiceDate":"2024-01-16","EndDate":"2025-01-15","Description":null,"CreatedDate":"2023-10-16T18:11:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:06.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:06.000+0000","OrderItemNumber":"0000000214","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":null,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihdUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":1.0,"SBQQ__QuoteLine__c":"a0v8N000002TJg8QAG","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479915211","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":120.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1O1vGrIsgf92XbAOcVNZIutY","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1O1vGrIsgf92XbAOcVNZIutY"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2jQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:08 GMT + Set-Cookie: + - BrowserId=hSMYxWxPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=411/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:07 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"OrderItem","url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005p2jQAA"},"Id":"8028N0000005p2jQAA","Product2Id":"01t8N000003DfNkQAK","IsDeleted":false,"OrderId":"8018N00000032bzQAA","PricebookEntryId":"01u8N000003e0MFQAY","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":120.0,"ListPrice":120.0,"TotalPrice":120.0,"ServiceDate":"2025-01-16","EndDate":"2026-01-15","Description":null,"CreatedDate":"2023-10-16T18:11:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:07.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:12:07.000+0000","OrderItemNumber":"0000000213","SBQQ__Activated__c":true,"SBQQ__Asset__c":null,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__BookingsIndicator__c":"Include","SBQQ__BundleRoot__c":null,"SBQQ__ChargeType__c":null,"SBQQ__ContractAction__c":"New","SBQQ__Contract__c":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__DefaultSubscriptionTerm__c":null,"SBQQ__DimensionType__c":"Year","SBQQ__DiscountSchedule__c":null,"SBQQ__OrderedQuantity__c":1.0,"SBQQ__PriceDimension__c":"a0D8N000004nihdUAA","SBQQ__PriceSchedule__c":null,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__ProrateMultiplier__c":1.0,"SBQQ__QuoteLine__c":"a0v8N000002TJg9QAG","SBQQ__QuotedListPrice__c":120.0,"SBQQ__QuotedQuantity__c":1.0,"SBQQ__RequiredBy__c":null,"SBQQ__RevisedOrderProduct__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479915211","SBQQ__ShippingAccount__c":null,"SBQQ__Status__c":"Activated","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":null,"SBQQ__Subscription__c":null,"SBQQ__TaxAmount__c":null,"SBQQ__TaxCode__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TerminatedDate__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__OrderProductBookings__c":120.0,"SBQQ__SubscriptionType__c":"Renewable","Skip_Line_Item__c":false,"Stripe_ID__c":"price_1O1vGtIsgf92XbAOLa3YJeGP","Test_Decimal_Field__c":null,"Test_String_Field__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1O1vGtIsgf92XbAOLa3YJeGP"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278018N00000032bzQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:08 GMT + Set-Cookie: + - BrowserId=hT9TSmxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=412/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJg8QAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:09 GMT + Set-Cookie: + - BrowserId=hVyfrGxPEe6eVoH0UjEKMA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:09 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=408/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:57 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJg8QAG"},"Id":"a0v8N000002TJg8QAG","IsDeleted":false,"Name":"QL-0000561","CreatedDate":"2023-10-16T18:11:57.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:57.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:57.000+0000","SBQQ__Quote__c":"a0z8N000000zBcBQAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":120.0,"SBQQ__DefaultSubscriptionTerm__c":null,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihdUAA","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2025-01-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":120.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":120.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MFQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNkQAK","SBQQ__ProrateMultiplier__c":1.0,"SBQQ__ProratedListPrice__c":120.0,"SBQQ__ProratedPrice__c":120.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":120.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479915211","SBQQ__SegmentLabel__c":"Year 1","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2024-01-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":120.0,"SBQQ__EffectiveEndDate__c":"2025-01-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2024-01-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":120.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":120.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":120.0,"SBQQ__PackageTotal__c":120.0,"SBQQ__PartnerTotal__c":120.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":120.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJg9QAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:09 GMT + Set-Cookie: + - BrowserId=hYRy_2xPEe6eVoH0UjEKMA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:09 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=409/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:57 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJg9QAG"},"Id":"a0v8N000002TJg9QAG","IsDeleted":false,"Name":"QL-0000562","CreatedDate":"2023-10-16T18:11:57.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:57.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:57.000+0000","SBQQ__Quote__c":"a0z8N000000zBcBQAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Quarterly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":120.0,"SBQQ__DefaultSubscriptionTerm__c":null,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihdUAA","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2026-01-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":120.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":120.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MFQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNkQAK","SBQQ__ProrateMultiplier__c":1.0,"SBQQ__ProratedListPrice__c":120.0,"SBQQ__ProratedPrice__c":120.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":120.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479915211","SBQQ__SegmentLabel__c":"Year 2","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2025-01-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":120.0,"SBQQ__EffectiveEndDate__c":"2026-01-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2025-01-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":120.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":120.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":120.0,"SBQQ__PackageTotal__c":120.0,"SBQQ__PartnerTotal__c":120.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":120.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/subscription_schedules + body: + encoding: UTF-8 + string: end_behavior=cancel&metadata[salesforce_order_id]=8018N00000032bzQAA&metadata[salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032bzQAA&start_date=1705363200&prebilling[iterations]=3&customer=cus_OpaRoiIoQYeuf2&phases[0][items][0][price]=price_1O1vGrIsgf92XbAOcVNZIutY&phases[0][items][0][metadata][salesforce_order_item_id]=8028N0000005p2kQAA&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2kQAA&phases[0][items][0][quantity]=1&phases[0][end_date]=1736985600&phases[0][metadata][salesforce_order_id]=8018N00000032bzQAA&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032bzQAA&phases[0][metadata][salesforce_segment_key]=1697479915211&phases[0][metadata][salesforce_segment_label]=Year++1&phases[1][items][0][price]=price_1O1vGtIsgf92XbAOLa3YJeGP&phases[1][items][0][metadata][salesforce_order_item_id]=8028N0000005p2jQAA&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2jQAA&phases[1][items][0][quantity]=1&phases[1][end_date]=1768521600&phases[1][metadata][salesforce_order_id]=8018N00000032bzQAA&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032bzQAA&phases[1][metadata][salesforce_segment_key]=1697479915211&phases[1][metadata][salesforce_segment_label]=Year++2 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_NKt1hV3cjGV9SV","request_duration_ms":251}}' + Idempotency-Key: + - c4d5f67b-66c1-44f0-b91c-bfcf238844f2 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:10 GMT + Content-Type: + - application/json + Content-Length: + - '3938' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - c4d5f67b-66c1-44f0-b91c-bfcf238844f2 + Original-Request: + - req_SOXEAbykPtXQ9m + Request-Id: + - req_SOXEAbykPtXQ9m + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vGvIsgf92XbAOX5J4GmM6", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479929, + "current_phase": null, + "customer": "cus_OpaRoiIoQYeuf2", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032bzQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032bzQAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1736985600, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2kQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2kQAA" + }, + "plan": "price_1O1vGrIsgf92XbAOcVNZIutY", + "price": "price_1O1vGrIsgf92XbAOcVNZIutY", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032bzQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032bzQAA", + "salesforce_segment_key": "1697479915211", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1705363200, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1768521600, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2jQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2jQAA" + }, + "plan": "price_1O1vGtIsgf92XbAOLa3YJeGP", + "price": "price_1O1vGtIsgf92XbAOLa3YJeGP", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032bzQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032bzQAA", + "salesforce_segment_key": "1697479915211", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1736985600, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": { + "invoice": "in_1O1vGvIsgf92XbAOkv3kWLfu", + "period_end": 1729036800, + "period_start": 1705363200 + }, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "not_started", + "subscription": null, + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032bzQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"sub_sched_1O1vGvIsgf92XbAOX5J4GmM6"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:12:10 GMT + Set-Cookie: + - BrowserId=hgghgmxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:10 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=408/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8018N00000032bzQAA-8018N00000032bzQAA + body: + encoding: UTF-8 + string: '{"Primary_Record_ID__c":"8018N00000032bzQAA","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8018N00000032bzQAA","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1O1vGvIsgf92XbAOX5J4GmM6","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_SOXEAbykPtXQ9m"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:12:10 GMT + Set-Cookie: + - BrowserId=hjhZlmxPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:10 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=414/5000000 + Location: + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OE2iUAG" + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"id":"a1W8N000000OE2iUAG","success":true,"errors":[],"created":true}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1O1vGvIsgf92XbAOX5J4GmM6?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_w3wH9safCsvese","request_duration_ms":268}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:10 GMT + Content-Type: + - application/json + Content-Length: + - '6162' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_dx0eYspFxtGa9u + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vGvIsgf92XbAOX5J4GmM6", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479929, + "current_phase": null, + "customer": "cus_OpaRoiIoQYeuf2", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032bzQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032bzQAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1736985600, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2kQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2kQAA" + }, + "plan": "price_1O1vGrIsgf92XbAOcVNZIutY", + "price": { + "id": "price_1O1vGrIsgf92XbAOcVNZIutY", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479925, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2kQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2kQAA" + }, + "nickname": null, + "product": "prod_OpaR7y3lGd8HT0", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 3, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 3000, + "unit_amount_decimal": "3000" + }, + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032bzQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032bzQAA", + "salesforce_segment_key": "1697479915211", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1705363200, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1768521600, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2jQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2jQAA" + }, + "plan": "price_1O1vGtIsgf92XbAOLa3YJeGP", + "price": { + "id": "price_1O1vGtIsgf92XbAOLa3YJeGP", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479927, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2jQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2jQAA" + }, + "nickname": null, + "product": "prod_OpaR7y3lGd8HT0", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 3, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 3000, + "unit_amount_decimal": "3000" + }, + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032bzQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032bzQAA", + "salesforce_segment_key": "1697479915211", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1736985600, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": { + "invoice": "in_1O1vGvIsgf92XbAOkv3kWLfu", + "period_end": 1729036800, + "period_start": 1705363200 + }, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "not_started", + "subscription": null, + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vGrIsgf92XbAOcVNZIutY + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_dx0eYspFxtGa9u","request_duration_ms":228}}' + Idempotency-Key: + - 537403de-84d3-4a97-82c6-0b7c64a3c5b2 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:11 GMT + Content-Type: + - application/json + Content-Length: + - '845' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 537403de-84d3-4a97-82c6-0b7c64a3c5b2 + Original-Request: + - req_zk6CeufCkLn565 + Request-Id: + - req_zk6CeufCkLn565 + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGrIsgf92XbAOcVNZIutY", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479925, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2kQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2kQAA" + }, + "nickname": null, + "product": "prod_OpaR7y3lGd8HT0", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 3, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 3000, + "unit_amount_decimal": "3000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vGtIsgf92XbAOLa3YJeGP + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_zk6CeufCkLn565","request_duration_ms":298}}' + Idempotency-Key: + - badda66c-99bb-433a-8613-f0ab8ca64afc + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:11 GMT + Content-Type: + - application/json + Content-Length: + - '845' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - badda66c-99bb-433a-8613-f0ab8ca64afc + Original-Request: + - req_rXSv6nW4MinE4a + Request-Id: + - req_rXSv6nW4MinE4a + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGtIsgf92XbAOLa3YJeGP", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479927, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2jQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2jQAA" + }, + "nickname": null, + "product": "prod_OpaR7y3lGd8HT0", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 3, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 3000, + "unit_amount_decimal": "3000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032bzQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:12:11 GMT + Set-Cookie: + - BrowserId=htoXYmxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:12:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:12:11 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=414/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:12:10 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032bzQAA"},"Id":"8018N00000032bzQAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPICQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRbQAO","EffectiveDate":"2024-01-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:12:00.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000304","TotalAmount":240.0,"CreatedDate":"2023-10-16T18:11:58.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:12:10.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:12:10.000+0000","LastViewedDate":"2023-10-16T18:12:10.000+0000","LastReferencedDate":"2023-10-16T18:12:10.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBcBQAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":240.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1O1vGvIsgf92XbAOX5J4GmM6","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1O1vGvIsgf92XbAOX5J4GmM6"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1O1vGvIsgf92XbAOX5J4GmM6 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_rXSv6nW4MinE4a","request_duration_ms":283}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:11 GMT + Content-Type: + - application/json + Content-Length: + - '3938' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_h8vhEXNREg8BX4 + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vGvIsgf92XbAOX5J4GmM6", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479929, + "current_phase": null, + "customer": "cus_OpaRoiIoQYeuf2", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032bzQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032bzQAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1736985600, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2kQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2kQAA" + }, + "plan": "price_1O1vGrIsgf92XbAOcVNZIutY", + "price": "price_1O1vGrIsgf92XbAOcVNZIutY", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032bzQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032bzQAA", + "salesforce_segment_key": "1697479915211", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1705363200, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1768521600, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2jQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2jQAA" + }, + "plan": "price_1O1vGtIsgf92XbAOLa3YJeGP", + "price": "price_1O1vGtIsgf92XbAOLa3YJeGP", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032bzQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032bzQAA", + "salesforce_segment_key": "1697479915211", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1736985600, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": { + "invoice": "in_1O1vGvIsgf92XbAOkv3kWLfu", + "period_end": 1729036800, + "period_start": 1705363200 + }, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "not_started", + "subscription": null, + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/invoices/in_1O1vGvIsgf92XbAOkv3kWLfu + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_h8vhEXNREg8BX4","request_duration_ms":205}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:12:12 GMT + Content-Type: + - application/json + Content-Length: + - '12283' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Finvoices%2F%3Ainvoice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_Yk40AGX9qUWCG7 + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: ASCII-8BIT + string: !binary |- + ewogICJpZCI6ICJpbl8xTzF2R3ZJc2dmOTJYYkFPa3Yza1dMZnUiLAogICJvYmplY3QiOiAiaW52b2ljZSIsCiAgImFjY291bnRfY291bnRyeSI6ICJVUyIsCiAgImFjY291bnRfbmFtZSI6ICJTdHJpcGVGb3JjZSBEZW1vIEFjY291bnQgIiwKICAiYWNjb3VudF90YXhfaWRzIjogbnVsbCwKICAiYW1vdW50X2R1ZSI6IDkwMDAsCiAgImFtb3VudF9wYWlkIjogMCwKICAiYW1vdW50X3JlbWFpbmluZyI6IDkwMDAsCiAgImFtb3VudF9zaGlwcGluZyI6IDAsCiAgImFwcGxpY2F0aW9uIjogImNhX0tIb0xKR3JpdGtReTlCaXNjMUQ1TzVZZ2xxZldzNWJpIiwKICAiYXBwbGljYXRpb25fZmVlX2Ftb3VudCI6IG51bGwsCiAgImF0dGVtcHRfY291bnQiOiAwLAogICJhdHRlbXB0ZWQiOiBmYWxzZSwKICAiYXV0b19hZHZhbmNlIjogdHJ1ZSwKICAiYXV0b21hdGljX3RheCI6IHsKICAgICJlbmFibGVkIjogZmFsc2UsCiAgICAic3RhdHVzIjogbnVsbAogIH0sCiAgImJpbGxpbmdfcmVhc29uIjogInN1YnNjcmlwdGlvbl9jcmVhdGUiLAogICJjaGFyZ2UiOiBudWxsLAogICJjb2xsZWN0aW9uX21ldGhvZCI6ICJjaGFyZ2VfYXV0b21hdGljYWxseSIsCiAgImNyZWF0ZWQiOiAxNjk3NDc5OTI5LAogICJjdXJyZW5jeSI6ICJ1c2QiLAogICJjdXN0b21fZmllbGRzIjogbnVsbCwKICAiY3VzdG9tZXIiOiAiY3VzX09wYVJvaUlvUVlldWYyIiwKICAiY3VzdG9tZXJfYWRkcmVzcyI6IG51bGwsCiAgImN1c3RvbWVyX2VtYWlsIjogbnVsbCwKICAiY3VzdG9tZXJfbmFtZSI6ICJSRVNUIEFjY291bnQgIDIwMjMtMTAtMTYgMDA6MDA6MDAgVVRDIiwKICAiY3VzdG9tZXJfcGhvbmUiOiBudWxsLAogICJjdXN0b21lcl9zaGlwcGluZyI6IG51bGwsCiAgImN1c3RvbWVyX3RheF9leGVtcHQiOiAibm9uZSIsCiAgImN1c3RvbWVyX3RheF9pZHMiOiBbXSwKICAiZGVmYXVsdF9wYXltZW50X21ldGhvZCI6IG51bGwsCiAgImRlZmF1bHRfc291cmNlIjogbnVsbCwKICAiZGVmYXVsdF90YXhfcmF0ZXMiOiBbXSwKICAiZGVzY3JpcHRpb24iOiBudWxsLAogICJkaXNjb3VudCI6IG51bGwsCiAgImRpc2NvdW50cyI6IFtdLAogICJkdWVfZGF0ZSI6IG51bGwsCiAgImVmZmVjdGl2ZV9hdCI6IG51bGwsCiAgImVuZGluZ19iYWxhbmNlIjogbnVsbCwKICAiZm9vdGVyIjogbnVsbCwKICAiZnJvbV9pbnZvaWNlIjogbnVsbCwKICAiaG9zdGVkX2ludm9pY2VfdXJsIjogbnVsbCwKICAiaW52b2ljZV9wZGYiOiBudWxsLAogICJsYXN0X2ZpbmFsaXphdGlvbl9lcnJvciI6IG51bGwsCiAgImxhdGVzdF9yZXZpc2lvbiI6IG51bGwsCiAgImxpbmVzIjogewogICAgIm9iamVjdCI6ICJsaXN0IiwKICAgICJkYXRhIjogWwogICAgICB7CiAgICAgICAgImlkIjogImlsXzFPMXZHdklzZ2Y5MlhiQU9kdWtDaXptTyIsCiAgICAgICAgIm9iamVjdCI6ICJsaW5lX2l0ZW0iLAogICAgICAgICJhbW91bnQiOiAzMDAwLAogICAgICAgICJhbW91bnRfZXhjbHVkaW5nX3RheCI6IDMwMDAsCiAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIjEgw5cgUkVTVCBQcm9kdWN0MiAgMjAyMy0xMC0xNiAwMDowMDowMCBVVEMgKGF0ICQzMC4wMCAvIGV2ZXJ5IDMgbW9udGhzKSBmcm9tIDE2IEphbiAyMDI0IHVudGlsIDE2IEFwciAyMDI0IiwKICAgICAgICAiZGlzY291bnRfYW1vdW50cyI6IFtdLAogICAgICAgICJkaXNjb3VudGFibGUiOiB0cnVlLAogICAgICAgICJkaXNjb3VudHMiOiBbXSwKICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgICAic2FsZXNmb3JjZV9vcmRlcl9pZCI6ICI4MDE4TjAwMDAwMDMyYnpRQUEiLAogICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfbGluayI6ICJodHRwczovL3BsYXRmb3JtLXBhZ2UtMzQ4MS1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS84MDE4TjAwMDAwMDMyYnpRQUEiLAogICAgICAgICAgInNhbGVzZm9yY2Vfc2VnbWVudF9rZXkiOiAiMTY5NzQ3OTkxNTIxMSIsCiAgICAgICAgICAic2FsZXNmb3JjZV9zZWdtZW50X2xhYmVsIjogIlllYXIgIDEiCiAgICAgICAgfSwKICAgICAgICAicGVyaW9kIjogewogICAgICAgICAgImVuZCI6IDE3MTMyMjU2MDAsCiAgICAgICAgICAic3RhcnQiOiAxNzA1MzYzMjAwCiAgICAgICAgfSwKICAgICAgICAicGxhbiI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xTzF2R3JJc2dmOTJYYkFPY1ZOWkl1dFkiLAogICAgICAgICAgIm9iamVjdCI6ICJwbGFuIiwKICAgICAgICAgICJhY3RpdmUiOiBmYWxzZSwKICAgICAgICAgICJhZ2dyZWdhdGVfdXNhZ2UiOiBudWxsLAogICAgICAgICAgImFtb3VudCI6IDMwMDAsCiAgICAgICAgICAiYW1vdW50X2RlY2ltYWwiOiAiMzAwMCIsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjk3NDc5OTI1LAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiaW50ZXJ2YWwiOiAibW9udGgiLAogICAgICAgICAgImludGVydmFsX2NvdW50IjogMywKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9hdXRvX2FyY2hpdmUiOiAidHJ1ZSIsCiAgICAgICAgICAgICJzYWxlc2ZvcmNlX29yZGVyX2l0ZW1faWQiOiAiODAyOE4wMDAwMDA1cDJrUUFBIiwKICAgICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfaXRlbV9saW5rIjogImh0dHBzOi8vcGxhdGZvcm0tcGFnZS0zNDgxLWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzgwMjhOMDAwMDAwNXAya1FBQSIKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9PcGFSN3kzbEdkOEhUMCIsCiAgICAgICAgICAidGllcnNfbW9kZSI6IG51bGwsCiAgICAgICAgICAidHJhbnNmb3JtX3VzYWdlIjogbnVsbCwKICAgICAgICAgICJ0cmlhbF9wZXJpb2RfZGF5cyI6IG51bGwsCiAgICAgICAgICAidXNhZ2VfdHlwZSI6ICJsaWNlbnNlZCIKICAgICAgICB9LAogICAgICAgICJwcmljZSI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xTzF2R3JJc2dmOTJYYkFPY1ZOWkl1dFkiLAogICAgICAgICAgIm9iamVjdCI6ICJwcmljZSIsCiAgICAgICAgICAiYWN0aXZlIjogZmFsc2UsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjk3NDc5OTI1LAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiY3VzdG9tX3VuaXRfYW1vdW50IjogbnVsbCwKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgImxvb2t1cF9rZXkiOiBudWxsLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9hdXRvX2FyY2hpdmUiOiAidHJ1ZSIsCiAgICAgICAgICAgICJzYWxlc2ZvcmNlX29yZGVyX2l0ZW1faWQiOiAiODAyOE4wMDAwMDA1cDJrUUFBIiwKICAgICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfaXRlbV9saW5rIjogImh0dHBzOi8vcGxhdGZvcm0tcGFnZS0zNDgxLWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzgwMjhOMDAwMDAwNXAya1FBQSIKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9PcGFSN3kzbEdkOEhUMCIsCiAgICAgICAgICAicmVjdXJyaW5nIjogewogICAgICAgICAgICAiYWdncmVnYXRlX3VzYWdlIjogbnVsbCwKICAgICAgICAgICAgImludGVydmFsIjogIm1vbnRoIiwKICAgICAgICAgICAgImludGVydmFsX2NvdW50IjogMywKICAgICAgICAgICAgInRyaWFsX3BlcmlvZF9kYXlzIjogbnVsbCwKICAgICAgICAgICAgInVzYWdlX3R5cGUiOiAibGljZW5zZWQiCiAgICAgICAgICB9LAogICAgICAgICAgInRheF9iZWhhdmlvciI6ICJ1bnNwZWNpZmllZCIsCiAgICAgICAgICAidGllcnNfbW9kZSI6IG51bGwsCiAgICAgICAgICAidHJhbnNmb3JtX3F1YW50aXR5IjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogInJlY3VycmluZyIsCiAgICAgICAgICAidW5pdF9hbW91bnQiOiAzMDAwLAogICAgICAgICAgInVuaXRfYW1vdW50X2RlY2ltYWwiOiAiMzAwMCIKICAgICAgICB9LAogICAgICAgICJwcm9yYXRpb24iOiBmYWxzZSwKICAgICAgICAicHJvcmF0aW9uX2RldGFpbHMiOiB7CiAgICAgICAgICAiY3JlZGl0ZWRfaXRlbXMiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAicXVhbnRpdHkiOiAxLAogICAgICAgICJyZW5kZXJpbmciOiBudWxsLAogICAgICAgICJzdWJzY3JpcHRpb24iOiAic3ViXzFPMXZHdklzZ2Y5MlhiQU9tRlBkdEdoNSIsCiAgICAgICAgInN1YnNjcmlwdGlvbl9pdGVtIjogInNpX09wYVJyWHU4QlNzcmlSIiwKICAgICAgICAidGF4X2Ftb3VudHMiOiBbXSwKICAgICAgICAidGF4X3JhdGVzIjogW10sCiAgICAgICAgInR5cGUiOiAic3Vic2NyaXB0aW9uIiwKICAgICAgICAidW5pdF9hbW91bnRfZXhjbHVkaW5nX3RheCI6ICIzMDAwIgogICAgICB9LAogICAgICB7CiAgICAgICAgImlkIjogImlsXzFPMXZHdklzZ2Y5MlhiQU82UHlsVGFJcCIsCiAgICAgICAgIm9iamVjdCI6ICJsaW5lX2l0ZW0iLAogICAgICAgICJhbW91bnQiOiAzMDAwLAogICAgICAgICJhbW91bnRfZXhjbHVkaW5nX3RheCI6IDMwMDAsCiAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIjEgw5cgUkVTVCBQcm9kdWN0MiAgMjAyMy0xMC0xNiAwMDowMDowMCBVVEMgKGF0ICQzMC4wMCAvIGV2ZXJ5IDMgbW9udGhzKSBmcm9tIDE2IEFwciAyMDI0IHVudGlsIDE2IEp1bCAyMDI0IiwKICAgICAgICAiZGlzY291bnRfYW1vdW50cyI6IFtdLAogICAgICAgICJkaXNjb3VudGFibGUiOiB0cnVlLAogICAgICAgICJkaXNjb3VudHMiOiBbXSwKICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgICAic2FsZXNmb3JjZV9vcmRlcl9pZCI6ICI4MDE4TjAwMDAwMDMyYnpRQUEiLAogICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfbGluayI6ICJodHRwczovL3BsYXRmb3JtLXBhZ2UtMzQ4MS1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS84MDE4TjAwMDAwMDMyYnpRQUEiLAogICAgICAgICAgInNhbGVzZm9yY2Vfc2VnbWVudF9rZXkiOiAiMTY5NzQ3OTkxNTIxMSIsCiAgICAgICAgICAic2FsZXNmb3JjZV9zZWdtZW50X2xhYmVsIjogIlllYXIgIDEiCiAgICAgICAgfSwKICAgICAgICAicGVyaW9kIjogewogICAgICAgICAgImVuZCI6IDE3MjEwODgwMDAsCiAgICAgICAgICAic3RhcnQiOiAxNzEzMjI1NjAwCiAgICAgICAgfSwKICAgICAgICAicGxhbiI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xTzF2R3JJc2dmOTJYYkFPY1ZOWkl1dFkiLAogICAgICAgICAgIm9iamVjdCI6ICJwbGFuIiwKICAgICAgICAgICJhY3RpdmUiOiBmYWxzZSwKICAgICAgICAgICJhZ2dyZWdhdGVfdXNhZ2UiOiBudWxsLAogICAgICAgICAgImFtb3VudCI6IDMwMDAsCiAgICAgICAgICAiYW1vdW50X2RlY2ltYWwiOiAiMzAwMCIsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjk3NDc5OTI1LAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiaW50ZXJ2YWwiOiAibW9udGgiLAogICAgICAgICAgImludGVydmFsX2NvdW50IjogMywKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9hdXRvX2FyY2hpdmUiOiAidHJ1ZSIsCiAgICAgICAgICAgICJzYWxlc2ZvcmNlX29yZGVyX2l0ZW1faWQiOiAiODAyOE4wMDAwMDA1cDJrUUFBIiwKICAgICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfaXRlbV9saW5rIjogImh0dHBzOi8vcGxhdGZvcm0tcGFnZS0zNDgxLWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzgwMjhOMDAwMDAwNXAya1FBQSIKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9PcGFSN3kzbEdkOEhUMCIsCiAgICAgICAgICAidGllcnNfbW9kZSI6IG51bGwsCiAgICAgICAgICAidHJhbnNmb3JtX3VzYWdlIjogbnVsbCwKICAgICAgICAgICJ0cmlhbF9wZXJpb2RfZGF5cyI6IG51bGwsCiAgICAgICAgICAidXNhZ2VfdHlwZSI6ICJsaWNlbnNlZCIKICAgICAgICB9LAogICAgICAgICJwcmljZSI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xTzF2R3JJc2dmOTJYYkFPY1ZOWkl1dFkiLAogICAgICAgICAgIm9iamVjdCI6ICJwcmljZSIsCiAgICAgICAgICAiYWN0aXZlIjogZmFsc2UsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjk3NDc5OTI1LAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiY3VzdG9tX3VuaXRfYW1vdW50IjogbnVsbCwKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgImxvb2t1cF9rZXkiOiBudWxsLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9hdXRvX2FyY2hpdmUiOiAidHJ1ZSIsCiAgICAgICAgICAgICJzYWxlc2ZvcmNlX29yZGVyX2l0ZW1faWQiOiAiODAyOE4wMDAwMDA1cDJrUUFBIiwKICAgICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfaXRlbV9saW5rIjogImh0dHBzOi8vcGxhdGZvcm0tcGFnZS0zNDgxLWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzgwMjhOMDAwMDAwNXAya1FBQSIKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9PcGFSN3kzbEdkOEhUMCIsCiAgICAgICAgICAicmVjdXJyaW5nIjogewogICAgICAgICAgICAiYWdncmVnYXRlX3VzYWdlIjogbnVsbCwKICAgICAgICAgICAgImludGVydmFsIjogIm1vbnRoIiwKICAgICAgICAgICAgImludGVydmFsX2NvdW50IjogMywKICAgICAgICAgICAgInRyaWFsX3BlcmlvZF9kYXlzIjogbnVsbCwKICAgICAgICAgICAgInVzYWdlX3R5cGUiOiAibGljZW5zZWQiCiAgICAgICAgICB9LAogICAgICAgICAgInRheF9iZWhhdmlvciI6ICJ1bnNwZWNpZmllZCIsCiAgICAgICAgICAidGllcnNfbW9kZSI6IG51bGwsCiAgICAgICAgICAidHJhbnNmb3JtX3F1YW50aXR5IjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogInJlY3VycmluZyIsCiAgICAgICAgICAidW5pdF9hbW91bnQiOiAzMDAwLAogICAgICAgICAgInVuaXRfYW1vdW50X2RlY2ltYWwiOiAiMzAwMCIKICAgICAgICB9LAogICAgICAgICJwcm9yYXRpb24iOiBmYWxzZSwKICAgICAgICAicHJvcmF0aW9uX2RldGFpbHMiOiB7CiAgICAgICAgICAiY3JlZGl0ZWRfaXRlbXMiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAicXVhbnRpdHkiOiAxLAogICAgICAgICJyZW5kZXJpbmciOiBudWxsLAogICAgICAgICJzdWJzY3JpcHRpb24iOiAic3ViXzFPMXZHdklzZ2Y5MlhiQU9tRlBkdEdoNSIsCiAgICAgICAgInN1YnNjcmlwdGlvbl9pdGVtIjogInNpX09wYVJyWHU4QlNzcmlSIiwKICAgICAgICAidGF4X2Ftb3VudHMiOiBbXSwKICAgICAgICAidGF4X3JhdGVzIjogW10sCiAgICAgICAgInR5cGUiOiAic3Vic2NyaXB0aW9uIiwKICAgICAgICAidW5pdF9hbW91bnRfZXhjbHVkaW5nX3RheCI6ICIzMDAwIgogICAgICB9LAogICAgICB7CiAgICAgICAgImlkIjogImlsXzFPMXZHdklzZ2Y5MlhiQU96UDNrOFFtSiIsCiAgICAgICAgIm9iamVjdCI6ICJsaW5lX2l0ZW0iLAogICAgICAgICJhbW91bnQiOiAzMDAwLAogICAgICAgICJhbW91bnRfZXhjbHVkaW5nX3RheCI6IDMwMDAsCiAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIjEgw5cgUkVTVCBQcm9kdWN0MiAgMjAyMy0xMC0xNiAwMDowMDowMCBVVEMgKGF0ICQzMC4wMCAvIGV2ZXJ5IDMgbW9udGhzKSBmcm9tIDE2IEp1bCAyMDI0IHVudGlsIDE2IE9jdCAyMDI0IiwKICAgICAgICAiZGlzY291bnRfYW1vdW50cyI6IFtdLAogICAgICAgICJkaXNjb3VudGFibGUiOiB0cnVlLAogICAgICAgICJkaXNjb3VudHMiOiBbXSwKICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgICAic2FsZXNmb3JjZV9vcmRlcl9pZCI6ICI4MDE4TjAwMDAwMDMyYnpRQUEiLAogICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfbGluayI6ICJodHRwczovL3BsYXRmb3JtLXBhZ2UtMzQ4MS1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS84MDE4TjAwMDAwMDMyYnpRQUEiLAogICAgICAgICAgInNhbGVzZm9yY2Vfc2VnbWVudF9rZXkiOiAiMTY5NzQ3OTkxNTIxMSIsCiAgICAgICAgICAic2FsZXNmb3JjZV9zZWdtZW50X2xhYmVsIjogIlllYXIgIDEiCiAgICAgICAgfSwKICAgICAgICAicGVyaW9kIjogewogICAgICAgICAgImVuZCI6IDE3MjkwMzY4MDAsCiAgICAgICAgICAic3RhcnQiOiAxNzIxMDg4MDAwCiAgICAgICAgfSwKICAgICAgICAicGxhbiI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xTzF2R3JJc2dmOTJYYkFPY1ZOWkl1dFkiLAogICAgICAgICAgIm9iamVjdCI6ICJwbGFuIiwKICAgICAgICAgICJhY3RpdmUiOiBmYWxzZSwKICAgICAgICAgICJhZ2dyZWdhdGVfdXNhZ2UiOiBudWxsLAogICAgICAgICAgImFtb3VudCI6IDMwMDAsCiAgICAgICAgICAiYW1vdW50X2RlY2ltYWwiOiAiMzAwMCIsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjk3NDc5OTI1LAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiaW50ZXJ2YWwiOiAibW9udGgiLAogICAgICAgICAgImludGVydmFsX2NvdW50IjogMywKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9hdXRvX2FyY2hpdmUiOiAidHJ1ZSIsCiAgICAgICAgICAgICJzYWxlc2ZvcmNlX29yZGVyX2l0ZW1faWQiOiAiODAyOE4wMDAwMDA1cDJrUUFBIiwKICAgICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfaXRlbV9saW5rIjogImh0dHBzOi8vcGxhdGZvcm0tcGFnZS0zNDgxLWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzgwMjhOMDAwMDAwNXAya1FBQSIKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9PcGFSN3kzbEdkOEhUMCIsCiAgICAgICAgICAidGllcnNfbW9kZSI6IG51bGwsCiAgICAgICAgICAidHJhbnNmb3JtX3VzYWdlIjogbnVsbCwKICAgICAgICAgICJ0cmlhbF9wZXJpb2RfZGF5cyI6IG51bGwsCiAgICAgICAgICAidXNhZ2VfdHlwZSI6ICJsaWNlbnNlZCIKICAgICAgICB9LAogICAgICAgICJwcmljZSI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xTzF2R3JJc2dmOTJYYkFPY1ZOWkl1dFkiLAogICAgICAgICAgIm9iamVjdCI6ICJwcmljZSIsCiAgICAgICAgICAiYWN0aXZlIjogZmFsc2UsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjk3NDc5OTI1LAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiY3VzdG9tX3VuaXRfYW1vdW50IjogbnVsbCwKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgImxvb2t1cF9rZXkiOiBudWxsLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9hdXRvX2FyY2hpdmUiOiAidHJ1ZSIsCiAgICAgICAgICAgICJzYWxlc2ZvcmNlX29yZGVyX2l0ZW1faWQiOiAiODAyOE4wMDAwMDA1cDJrUUFBIiwKICAgICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfaXRlbV9saW5rIjogImh0dHBzOi8vcGxhdGZvcm0tcGFnZS0zNDgxLWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzgwMjhOMDAwMDAwNXAya1FBQSIKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9PcGFSN3kzbEdkOEhUMCIsCiAgICAgICAgICAicmVjdXJyaW5nIjogewogICAgICAgICAgICAiYWdncmVnYXRlX3VzYWdlIjogbnVsbCwKICAgICAgICAgICAgImludGVydmFsIjogIm1vbnRoIiwKICAgICAgICAgICAgImludGVydmFsX2NvdW50IjogMywKICAgICAgICAgICAgInRyaWFsX3BlcmlvZF9kYXlzIjogbnVsbCwKICAgICAgICAgICAgInVzYWdlX3R5cGUiOiAibGljZW5zZWQiCiAgICAgICAgICB9LAogICAgICAgICAgInRheF9iZWhhdmlvciI6ICJ1bnNwZWNpZmllZCIsCiAgICAgICAgICAidGllcnNfbW9kZSI6IG51bGwsCiAgICAgICAgICAidHJhbnNmb3JtX3F1YW50aXR5IjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogInJlY3VycmluZyIsCiAgICAgICAgICAidW5pdF9hbW91bnQiOiAzMDAwLAogICAgICAgICAgInVuaXRfYW1vdW50X2RlY2ltYWwiOiAiMzAwMCIKICAgICAgICB9LAogICAgICAgICJwcm9yYXRpb24iOiBmYWxzZSwKICAgICAgICAicHJvcmF0aW9uX2RldGFpbHMiOiB7CiAgICAgICAgICAiY3JlZGl0ZWRfaXRlbXMiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAicXVhbnRpdHkiOiAxLAogICAgICAgICJyZW5kZXJpbmciOiBudWxsLAogICAgICAgICJzdWJzY3JpcHRpb24iOiAic3ViXzFPMXZHdklzZ2Y5MlhiQU9tRlBkdEdoNSIsCiAgICAgICAgInN1YnNjcmlwdGlvbl9pdGVtIjogInNpX09wYVJyWHU4QlNzcmlSIiwKICAgICAgICAidGF4X2Ftb3VudHMiOiBbXSwKICAgICAgICAidGF4X3JhdGVzIjogW10sCiAgICAgICAgInR5cGUiOiAic3Vic2NyaXB0aW9uIiwKICAgICAgICAidW5pdF9hbW91bnRfZXhjbHVkaW5nX3RheCI6ICIzMDAwIgogICAgICB9CiAgICBdLAogICAgImhhc19tb3JlIjogZmFsc2UsCiAgICAidG90YWxfY291bnQiOiAzLAogICAgInVybCI6ICIvdjEvaW52b2ljZXMvaW5fMU8xdkd2SXNnZjkyWGJBT2t2M2tXTGZ1L2xpbmVzIgogIH0sCiAgImxpdmVtb2RlIjogZmFsc2UsCiAgIm1ldGFkYXRhIjoge30sCiAgIm5leHRfcGF5bWVudF9hdHRlbXB0IjogMTY5NzQ4MzUyOSwKICAibnVtYmVyIjogbnVsbCwKICAib25fYmVoYWxmX29mIjogbnVsbCwKICAicGFpZCI6IGZhbHNlLAogICJwYWlkX291dF9vZl9iYW5kIjogZmFsc2UsCiAgInBheW1lbnRfaW50ZW50IjogbnVsbCwKICAicGF5bWVudF9zZXR0aW5ncyI6IHsKICAgICJkZWZhdWx0X21hbmRhdGUiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX29wdGlvbnMiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX3R5cGVzIjogbnVsbAogIH0sCiAgInBlcmlvZF9lbmQiOiAxNjk3NDc5OTI5LAogICJwZXJpb2Rfc3RhcnQiOiAxNjk3NDc5OTI5LAogICJwb3N0X3BheW1lbnRfY3JlZGl0X25vdGVzX2Ftb3VudCI6IDAsCiAgInByZV9wYXltZW50X2NyZWRpdF9ub3Rlc19hbW91bnQiOiAwLAogICJxdW90ZSI6IG51bGwsCiAgInJlY2VpcHRfbnVtYmVyIjogbnVsbCwKICAicmVuZGVyaW5nIjogbnVsbCwKICAicmVuZGVyaW5nX29wdGlvbnMiOiBudWxsLAogICJzaGlwcGluZ19jb3N0IjogbnVsbCwKICAic2hpcHBpbmdfZGV0YWlscyI6IG51bGwsCiAgInN0YXJ0aW5nX2JhbGFuY2UiOiAwLAogICJzdGF0ZW1lbnRfZGVzY3JpcHRvciI6IG51bGwsCiAgInN0YXR1cyI6ICJkcmFmdCIsCiAgInN0YXR1c190cmFuc2l0aW9ucyI6IHsKICAgICJmaW5hbGl6ZWRfYXQiOiBudWxsLAogICAgIm1hcmtlZF91bmNvbGxlY3RpYmxlX2F0IjogbnVsbCwKICAgICJwYWlkX2F0IjogbnVsbCwKICAgICJ2b2lkZWRfYXQiOiBudWxsCiAgfSwKICAic3Vic2NyaXB0aW9uIjogbnVsbCwKICAic3Vic2NyaXB0aW9uX2RldGFpbHMiOiB7CiAgICAibWV0YWRhdGEiOiBudWxsCiAgfSwKICAic3VidG90YWwiOiA5MDAwLAogICJzdWJ0b3RhbF9leGNsdWRpbmdfdGF4IjogOTAwMCwKICAidGF4IjogbnVsbCwKICAidGVzdF9jbG9jayI6IG51bGwsCiAgInRvdGFsIjogOTAwMCwKICAidG90YWxfZGlzY291bnRfYW1vdW50cyI6IFtdLAogICJ0b3RhbF9leGNsdWRpbmdfdGF4IjogOTAwMCwKICAidG90YWxfdGF4X2Ftb3VudHMiOiBbXSwKICAidHJhbnNmZXJfZGF0YSI6IG51bGwsCiAgIndlYmhvb2tzX2RlbGl2ZXJlZF9hdCI6IDE2OTc0Nzk5MjkKfQ== + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_two_mdq_products_and_non-segmented_product.yml b/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_two_mdq_products_and_non-segmented_product.yml new file mode 100644 index 0000000000..7215481306 --- /dev/null +++ b/test/vcr_cassettes/integration/translate/test_mdq_products/sync_a_salesforce_order_with_two_mdq_products_and_non-segmented_product.yml @@ -0,0 +1,8870 @@ +--- +http_interactions: +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account + body: + encoding: UTF-8 + string: '{"Name":"REST Account 2023-10-16 00:00:00 UTC"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:10:59 GMT + Set-Cookie: + - BrowserId=XDLnYWxPEe6eVoH0UjEKMA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:00 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=375/5000000 + Location: + - "/services/data/v58.0/sobjects/Account/0018N00000JbPHJQA3" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0018N00000JbPHJQA3","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:00 GMT + Set-Cookie: + - BrowserId=XHkXvGxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:00 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=375/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + body: + encoding: UTF-8 + string: '{"Name":"REST Opportunity 2023-10-16 00:00:00 UTC","CloseDate":"2023-10-16","StageName":"Closed/Won","AccountId":"0018N00000JbPHJQA3"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:00 GMT + Set-Cookie: + - BrowserId=XJYWRmxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:00 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=375/5000000 + Location: + - "/services/data/v58.0/sobjects/Opportunity/0068N000006QZRWQA4" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0068N000006QZRWQA4","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + body: + encoding: UTF-8 + string: '{"LastName":"Bianco","Email":"order_with_mdq_and_non_mdq_product_2@example.com"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:01 GMT + Set-Cookie: + - BrowserId=XOpQKmxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:01 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=376/5000000 + Location: + - "/services/data/v58.0/sobjects/Contact/0038N00000GH2vpQAD" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0038N00000GH2vpQAD","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c + body: + encoding: UTF-8 + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0068N000006QZRWQA4","SBQQ__PrimaryContact__c":"0038N00000GH2vpQAD","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscriptionTerm__c":24}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:01 GMT + Set-Cookie: + - BrowserId=XSf1ZWxPEe6dhS0iYJKafA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:01 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=375/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0z8N000000zBc6QAE","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + body: + encoding: UTF-8 + string: '{"Name":"REST Product2 2023-10-16 00:00:00 UTC","IsActive":true,"Description":"A + great description","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__SubscriptionTerm__c":1,"SBQQ__BillingFrequency__c":"Monthly"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:02 GMT + Set-Cookie: + - BrowserId=XbHmlWxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:02 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=375/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t8N000003DfNQQA0" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t8N000003DfNQQA0","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:02 GMT + Set-Cookie: + - BrowserId=XfDDjmxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:02 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=375/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + body: + encoding: UTF-8 + string: '{"Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNQQA0","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:03 GMT + Set-Cookie: + - BrowserId=Xg3B_WxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:03 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=375/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003e0LvQAI" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u8N000003e0LvQAI","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Dimension__c + body: + encoding: UTF-8 + string: '{"Name":"Yearly Ramp","SBQQ__Type__c":"Year","SBQQ__Product__c":"01t8N000003DfNQQA0"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:03 GMT + Set-Cookie: + - BrowserId=XjGdGWxPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:03 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=375/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0D8N000004nihTUAQ","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + body: + encoding: UTF-8 + string: '{"Name":"REST Product2 2023-10-16 00:00:00 UTC","IsActive":true,"Description":"A + great description","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__SubscriptionTerm__c":1,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:07 GMT + Set-Cookie: + - BrowserId=YLBZcmxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:07 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=376/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t8N000003DfNVQA0" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t8N000003DfNVQA0","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:07 GMT + Set-Cookie: + - BrowserId=YO7pF2xPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:07 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=377/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + body: + encoding: UTF-8 + string: '{"Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNVQA0","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:08 GMT + Set-Cookie: + - BrowserId=YQhkVGxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=376/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003e0M0QAI" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u8N000003e0M0QAI","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + body: + encoding: UTF-8 + string: '{"Name":"REST Product2 2023-10-16 00:00:00 UTC","IsActive":true,"Description":"A + great description","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__SubscriptionTerm__c":1,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:08 GMT + Set-Cookie: + - BrowserId=YSkyfWxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=377/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t8N000003DfNaQAK" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t8N000003DfNaQAK","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:08 GMT + Set-Cookie: + - BrowserId=YWwHs2xPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=377/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + body: + encoding: UTF-8 + string: '{"Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNaQAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:08 GMT + Set-Cookie: + - BrowserId=YYqMT2xPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=376/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003e0M5QAI" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u8N000003e0M5QAI","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Dimension__c + body: + encoding: UTF-8 + string: '{"Name":"Yearly Ramp","SBQQ__Type__c":"Year","SBQQ__Product__c":"01t8N000003DfNaQAK"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:09 GMT + Set-Cookie: + - BrowserId=Ya3MVmxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:09 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=378/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0D8N000004nihYUAQ","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:09 GMT + Set-Cookie: + - BrowserId=YdlIzGxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:09 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=376/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z8N000000zBc6QAE + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:09 GMT + Set-Cookie: + - BrowserId=YfRxxGxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:09 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t8N000003DfNQQA0 + body: + encoding: UTF-8 + string: '{"context":"{\"pricebookId\":\"01s8N000002d0dzQAA\"}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:10 GMT + Set-Cookie: + - BrowserId=Yni9LWxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:10 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:11 GMT + Set-Cookie: + - BrowserId=Yt746GxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:11 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000542\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000543\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000542\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000543\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:13 GMT + Set-Cookie: + - BrowserId=Y_e8H2xPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:13 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":2880.00,\"SBQQ__CustomerAmount__c\":2880.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000544\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000545\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + body: + encoding: UTF-8 + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000544\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000545\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:14 GMT + Set-Cookie: + - BrowserId=ZOGm1WxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:14 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\",\"Id\":\"0068N000006QZRWQA4\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JbPHJQA3\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-10-16 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":24.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__LineItemCount__c\":2.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z8N000000zBc6QAE\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":1.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000544\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":2.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000545\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:15 GMT + Set-Cookie: + - BrowserId=ZSNqpmxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:15 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=379/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z8N000000zBc6QAE + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:15 GMT + Set-Cookie: + - BrowserId=ZTqcVWxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:15 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":2880.00,\"SBQQ__CustomerAmount__c\":2880.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t8N000003DfNaQAK + body: + encoding: UTF-8 + string: '{"context":"{\"pricebookId\":\"01s8N000002d0dzQAA\"}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:15 GMT + Set-Cookie: + - BrowserId=Za8vmGxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:15 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"Id\":\"a0D8N000004nihYUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:09.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:09.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:09.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0M5QAI\"},\"Product2Id\":\"01t8N000003DfNaQAK\",\"Id\":\"01u8N000003e0M5QAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"Id\":\"a0D8N000004nihYUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:09.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:09.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:09.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0M5QAI\"},\"Product2Id\":\"01t8N000003DfNaQAK\",\"Id\":\"01u8N000003e0M5QAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:16 GMT + Set-Cookie: + - BrowserId=ZhkVAGxPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:16 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":2880.00,\"SBQQ__CustomerAmount__c\":2880.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":4,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":5,\"netTotal\":5760.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000548\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000549\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":5760.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":4,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":5,\"netTotal\":5760.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000548\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000549\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":5760.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:18 GMT + Set-Cookie: + - BrowserId=ZzoVx2xPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:18 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":5760.00,\"SBQQ__CustomerAmount__c\":5760.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":4,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":5,\"netTotal\":5760.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000550\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000551\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":5760.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + body: + encoding: UTF-8 + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":5760.0,\"SBQQ__CustomerAmount__c\":5760.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":4,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":5,\"netTotal\":5760.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000550\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000551\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":5760.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:20 GMT + Set-Cookie: + - BrowserId=aEGaFmxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:20 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":5760.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":5760.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\",\"Id\":\"0068N000006QZRWQA4\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JbPHJQA3\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-10-16 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":24.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__LineItemCount__c\":4.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z8N000000zBc6QAE\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":5,\"netTotal\":5760.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":1.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000546\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":2.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000547\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":1.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJfeQAG\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":2.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000550\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":2.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJffQAG\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":2.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000551\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":5760.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + body: + encoding: UTF-8 + string: '{"Name":"REST Product2 2023-10-16 00:00:00 UTC","IsActive":true,"Description":"A + great description","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionType__c":"Renewable","SBQQ__SubscriptionTerm__c":1,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:20 GMT + Set-Cookie: + - BrowserId=aJJ6JGxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:20 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=381/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t8N000003DfNfQAK" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t8N000003DfNfQAK","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:21 GMT + Set-Cookie: + - BrowserId=aLv6sGxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:21 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=377/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + body: + encoding: UTF-8 + string: '{"Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNfQAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:21 GMT + Set-Cookie: + - BrowserId=aNpYbmxPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:21 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=377/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003e0MAQAY" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u8N000003e0MAQAY","success":true,"errors":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:21 GMT + Set-Cookie: + - BrowserId=aPxfc2xPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:21 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=379/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z8N000000zBc6QAE + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:21 GMT + Set-Cookie: + - BrowserId=aRt_omxPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:21 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":5760.00,\"SBQQ__CustomerAmount__c\":5760.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":4,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":5,\"netTotal\":5760.00,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG\"},\"Id\":\"a0v8N000002TJfeQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000552\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"Id\":\"a0D8N000004nihYUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:09.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:09.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:09.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0M5QAI\"},\"Product2Id\":\"01t8N000003DfNaQAK\",\"Id\":\"01u8N000003e0M5QAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG\"},\"Id\":\"a0v8N000002TJffQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000553\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"Id\":\"a0D8N000004nihYUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:09.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:09.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:09.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0M5QAI\"},\"Product2Id\":\"01t8N000003DfNaQAK\",\"Id\":\"01u8N000003e0M5QAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":5760.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t8N000003DfNfQAK + body: + encoding: UTF-8 + string: '{"context":"{\"pricebookId\":\"01s8N000002d0dzQAA\"}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:23 GMT + Set-Cookie: + - BrowserId=af4YEmxPEe6pW9kzIjtBLA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:23 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNfQAK\"},\"Id\":\"01t8N000003DfNfQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.00000,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MAQAY\"},\"Product2Id\":\"01t8N000003DfNfQAK\",\"Id\":\"01u8N000003e0MAQAY\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":5760.0,\"SBQQ__CustomerAmount__c\":5760.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":4,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":5,\"netTotal\":5760.0,\"netNonSegmentTotal\":0.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"Id\":\"a0D8N000004nihTUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:07.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:07.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:07.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI\"},\"Product2Id\":\"01t8N000003DfNQQA0\",\"Id\":\"01u8N000003e0LvQAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG\"},\"Id\":\"a0v8N000002TJfeQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000552\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"Id\":\"a0D8N000004nihYUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:09.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:09.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:09.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0M5QAI\"},\"Product2Id\":\"01t8N000003DfNaQAK\",\"Id\":\"01u8N000003e0M5QAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG\"},\"Id\":\"a0v8N000002TJffQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000553\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Dimensions__r\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"Id\":\"a0D8N000004nihYUAQ\",\"OwnerId\":\"0058N000004zYG5QAM\",\"IsDeleted\":false,\"Name\":\"Yearly + Ramp\",\"CreatedDate\":\"2023-10-16T18:11:09.000+0000\",\"CreatedById\":\"0058N000004zYG5QAM\",\"LastModifiedDate\":\"2023-10-16T18:11:09.000+0000\",\"LastModifiedById\":\"0058N000004zYG5QAM\",\"SystemModstamp\":\"2023-10-16T18:11:09.000+0000\",\"SBQQ__CostEditable__c\":\"Inherit\",\"SBQQ__NonDiscountable__c\":\"Inherit\",\"SBQQ__NonPartnerDiscountable__c\":\"Inherit\",\"SBQQ__PriceEditable__c\":\"Inherit\",\"SBQQ__QuantityEditable__c\":\"Inherit\",\"SBQQ__Taxable__c\":\"Inherit\",\"SBQQ__Type__c\":\"Year\"}]},\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0M5QAI\"},\"Product2Id\":\"01t8N000003DfNaQAK\",\"Id\":\"01u8N000003e0M5QAI\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"dimensionType\":\"Year\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":5760.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNfQAK\"},\"Id\":\"01t8N000003DfNfQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + great description\",\"SBQQ__SubscriptionPricing__c\":\"Fixed Price\",\"SBQQ__PriceEditable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__CostEditable__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__Optional__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__AssetConversion__c\":\"One + per quote line\",\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MAQAY\"},\"Product2Id\":\"01t8N000003DfNfQAK\",\"Id\":\"01u8N000003e0MAQAY\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}],\"groupKey\":0,\"ignoreCalculate\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:23 GMT + Set-Cookie: + - BrowserId=amqU5GxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:23 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":5760.00,\"SBQQ__CustomerAmount__c\":5760.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":5,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":6,\"netTotal\":8640.00,\"netNonSegmentTotal\":2880.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG\"},\"Id\":\"a0v8N000002TJfeQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000552\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG\"},\"Id\":\"a0v8N000002TJffQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000553\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"2\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNfQAK\",\"SBQQ__Number__c\":3,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MAQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000554\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":2880.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":2880.00,\"SBQQ__NetTotal__c\":2880.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":2880.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":2880.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":24.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":2880.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":2880.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNfQAK\"},\"Id\":\"01t8N000003DfNfQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":6,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":8640.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator + body: + encoding: UTF-8 + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":5760.0,\"SBQQ__CustomerAmount__c\":5760.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":5,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":6,\"netTotal\":8640.0,\"netNonSegmentTotal\":2880.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG\"},\"Id\":\"a0v8N000002TJfeQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000552\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG\"},\"Id\":\"a0v8N000002TJffQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000553\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"2\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNfQAK\",\"SBQQ__Number__c\":3,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MAQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000554\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":2880.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":2880.0,\"SBQQ__NetTotal__c\":2880.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":2880.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":2880.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":24.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":2880.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":2880.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNfQAK\"},\"Id\":\"01t8N000003DfNfQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":6,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":8640.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:25 GMT + Set-Cookie: + - BrowserId=a4EOYGxPEe6eVoH0UjEKMA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:25 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":8640.00,\"SBQQ__CustomerAmount__c\":8640.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":5,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":6,\"netTotal\":8640.00,\"netNonSegmentTotal\":2880.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG\"},\"Id\":\"a0v8N000002TJfeQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000552\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG\"},\"Id\":\"a0v8N000002TJffQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000553\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.00,\"SBQQ__NetTotal__c\":1440.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"2\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNfQAK\",\"SBQQ__Number__c\":3,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MAQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000555\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":2880.00,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":2880.00,\"SBQQ__NetTotal__c\":2880.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":2880.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":2880.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":24.0000,\"SBQQ__Quantity__c\":1.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":2880.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":2880.00,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNfQAK\"},\"Id\":\"01t8N000003DfNfQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":6,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":8640.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + body: + encoding: UTF-8 + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"Id\":\"a0z8N000000zBc6QAE\",\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__SubscriptionTerm__c\":24,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NetAmount__c\":8640.0,\"SBQQ__CustomerAmount__c\":8640.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":5,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"Id\":\"0018N00000JbPHJQA3\",\"Name\":\"REST + Account 2023-10-16 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"Id\":\"0068N000006QZRWQA4\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":6,\"netTotal\":8640.0,\"netNonSegmentTotal\":2880.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000546\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__Number__c\":1,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000547\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"Id\":\"01t8N000003DfNQQA0\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG\"},\"Id\":\"a0v8N000002TJfeQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":1,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000552\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG\"},\"Id\":\"a0v8N000002TJffQAG\",\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__Number__c\":2,\"SBQQ__SegmentIndex__c\":2,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000553\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\",\"SBQQ__QuantityEditable__c\":\"Inherit\"},\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"Id\":\"01t8N000003DfNaQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"2\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000003DfNfQAK\",\"SBQQ__Number__c\":3,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MAQAY\",\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000555\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":2880.0,\"SBQQ__EffectiveSubscriptionTerm__c\":24,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":2880.0,\"SBQQ__NetTotal__c\":2880.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":2880.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":2880.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":24.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":2880.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__Existing__c\":false,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":2880.0,\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNfQAK\"},\"Id\":\"01t8N000003DfNfQAK\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__Source__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__ProductOption__c\":null,\"SBQQ__SegmentIndex__c\":null,\"SBQQ__SegmentLabel__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__Favorite__c\":null,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ChargeType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__OptionType__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__StartDate__c\":null,\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__UnitCost__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BlockPrice__c\":null,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__PriorQuantity__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__GrossProfit__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__UpgradedSubscription__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":6,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":8640.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:27 GMT + Set-Cookie: + - BrowserId=bK2nn2xPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:27 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":8640.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":8640.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000zBc6QAE\",\"AccountId\":\"0018N00000JbPHJQA3\",\"Id\":\"0068N000006QZRWQA4\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JbPHJQA3\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-10-16 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00250\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":24.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0018N00000JbPHJQA3\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-11-15\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0068N000006QZRWQA4\",\"SBQQ__LineItemCount__c\":5.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z8N000000zBc6QAE\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":6,\"netTotal\":8640.0,\"netNonSegmentTotal\":2880.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":1.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJfPQAW\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000546\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":2,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":2.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJfQQAW\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihTUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihTUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihTUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479871806\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":1.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000547\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0LvQAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNQQA0\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNQQA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":1.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJfeQAG\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2024-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":2.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000552\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2023-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 1\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":4,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"effectiveEndDate\":\"2024-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":true,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__SegmentIndex__c\":2.0,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"Id\":\"a0v8N000002TJffQAG\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":\"a0D8N000004nihYUAQ\",\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":\"2025-10-15\",\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__Dimension__r\":{\"attributes\":{\"type\":\"SBQQ__Dimension__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Dimension__c/a0D8N000004nihYUAQ\"},\"SBQQ__QuantityEditable__c\":\"Inherit\",\"Id\":\"a0D8N000004nihYUAQ\",\"SBQQ__Type__c\":\"Year\"},\"SBQQ__SegmentKey__c\":\"1697479877141\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":2.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0000553\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":\"2024-10-16\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0M5QAI\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNaQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNaQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__SegmentLabel__c\":\"Year 2\",\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":true,\"key\":5,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2024-10-16\",\"effectiveEndDate\":\"2025-10-15\",\"dimensionType\":\"Year\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000zBc6QAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"2\",\"ui_original_record\"]},\"subscriptionTerm\":24,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJftQAG\"},\"SBQQ__CarryoverLine__c\":false,\"SBQQ__TermDiscountTier__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":\"Arrears\",\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-10-16 00:00:00 UTC\",\"SBQQ__SegmentIndex__c\":null,\"SBQQ__DiscountTier__c\":null,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__RenewedSubscription__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__Source__c\":null,\"SBQQ__Quote__c\":\"a0z8N000000zBc6QAE\",\"SBQQ__ProratedListPrice__c\":2880.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":2880.0,\"Id\":\"a0v8N000002TJftQAG\",\"SBQQ__EffectiveSubscriptionTerm__c\":24.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":2880.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Dimension__c\":null,\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":null,\"SBQQ__SpecialPriceType__c\":null,\"SBQQ__SegmentKey__c\":null,\"SBQQ__OptionDiscount__c\":null,\"SBQQ__RequiredBy__c\":null,\"SBQQ__UpgradedAsset__c\":null,\"SBQQ__Bundled__c\":false,\"SBQQ__OptionType__c\":null,\"SBQQ__Number__c\":3.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":2880.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":24.0,\"Name\":\"QL-0000555\",\"SBQQ__CustomerPrice__c\":2880.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":2880.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__BlockPrice__c\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed + Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u8N000003e0MAQAY\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":2880.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t8N000003DfNfQAK\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000003DfNfQAK\",\"Name\":\"REST + Product2 2023-10-16 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000003DfNfQAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__Uplift__c\":0.0,\"SBQQ__PackageProductCode__c\":null,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__SegmentLabel__c\":null,\"SBQQ__AdditionalQuantity__c\":null,\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":6,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-10-16\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":8640.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE + body: + encoding: UTF-8 + string: '{"SBQQ__Ordered__c":true}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:28 GMT + Set-Cookie: + - BrowserId=bUYWZWxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:28 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=380/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE/SBQQ__Orders__r + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:30 GMT + Set-Cookie: + - BrowserId=bp0bP2xPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:30 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=385/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8018N00000032buQAA"},"Id":"8018N00000032buQAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPHJQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRWQA4","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Draft","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":null,"ActivatedById":null,"StatusCode":"Draft","OrderNumber":"00000303","TotalAmount":8640.0,"CreatedDate":"2023-10-16T18:11:29.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:30.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:11:30.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":8640.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032buQAA + body: + encoding: UTF-8 + string: '{"Status":"Activated"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:31 GMT + Set-Cookie: + - BrowserId=brufamxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:31 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=382/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032buQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:31 GMT + Set-Cookie: + - BrowserId=byeny2xPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:31 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=383/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:31 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032buQAA"},"Id":"8018N00000032buQAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPHJQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRWQA4","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:11:31.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000303","TotalAmount":8640.0,"CreatedDate":"2023-10-16T18:11:29.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:31.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:11:31.000+0000","LastViewedDate":"2023-10-16T18:11:31.000+0000","LastReferencedDate":"2023-10-16T18:11:31.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":8640.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032buQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:32 GMT + Set-Cookie: + - BrowserId=b0Ysy2xPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:32 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=386/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:31 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032buQAA"},"Id":"8018N00000032buQAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPHJQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRWQA4","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:11:31.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000303","TotalAmount":8640.0,"CreatedDate":"2023-10-16T18:11:29.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:31.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:11:31.000+0000","LastViewedDate":"2023-10-16T18:11:31.000+0000","LastReferencedDate":"2023-10-16T18:11:31.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":8640.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + body: + encoding: UTF-8 + string: '{"order_ids":["8018N00000032buQAA"]}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:32 GMT + Set-Cookie: + - BrowserId=b2Vz0WxPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:32 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0038N00000GH2vpQAD"},"Id":"0038N00000GH2vpQAD","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"order_with_mdq_and_non_mdq_product_2@example.com","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:01.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:01.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:01.000+0000","LastViewedDate":"2023-10-16T18:11:01.000+0000","LastReferencedDate":"2023-10-16T18:11:01.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0038N00000GH2vpQAD","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4"},"Id":"0068N000006QZRWQA4","IsDeleted":false,"AccountId":"0018N00000JbPHJQA3","IsPrivate":false,"Name":"REST + Opportunity 2023-10-16 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-10-16","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:00.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:02.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:02.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-10-16T18:11:00.000+0000","LastReferencedDate":"2023-10-16T18:11:00.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000zBc6QAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0018N00000JbPHJQA3"},"Id":"0018N00000JbPHJQA3","IsDeleted":false,"Name":"REST + Account 2023-10-16 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0018N00000JbPHJQA3","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:00.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:00.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:00.000+0000","LastViewedDate":"2023-10-16T18:11:00.000+0000","LastReferencedDate":"2023-10-16T18:11:00.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["0018N00000JbPHJQA3"],"Opportunities":["0068N000006QZRWQA4"],"Contacts":["0038N00000GH2vpQAD"],"SBQQ__RegularAmount__c":8640.00,"SBQQ__NetAmount__c":8640.00,"SBQQ__ListAmount__c":8640.00,"SBQQ__CustomerAmount__c":8640.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-11-15","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":5,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":true,"SBQQ__Type__c":"Quote","SBQQ__SubscriptionTerm__c":24,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-10-16","SBQQ__ShippingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0038N00000GH2vpQAD","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__PriceBook__c":"01s8N000002d0dzQAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0068N000006QZRWQA4","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-10-16T18:11:28.000+0000","SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST + Account 2023-10-16 00:00:00 UTC","SBQQ__Account__c":"0018N00000JbPHJQA3","LastReferencedDate":"2023-10-16T18:11:28.000+0000","LastViewedDate":"2023-10-16T18:11:28.000+0000","SystemModstamp":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:02.000+0000","Name":"Q-00250","IsDeleted":false,"OwnerId":"0058N000004zYG5QAM","Id":"a0z8N000000zBc6QAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z8N000000zBc6QAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t8N000003DfNQQA0"},"Id":"01t8N000003DfNQQA0","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:11:02.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:02.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:03.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BillingFrequency__c":"Monthly","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t8N000003DfNaQAK"},"Id":"01t8N000003DfNaQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:11:08.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:08.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:09.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t8N000003DfNfQAK"},"Id":"01t8N000003DfNfQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:11:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:20.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:21.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0LvQAI"},"Id":"01u8N000003e0LvQAI","Name":"REST + Product2 2023-10-16 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNQQA0","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-10-16T18:11:03.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:03.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:03.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0M5QAI"},"Id":"01u8N000003e0M5QAI","Name":"REST + Product2 2023-10-16 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNaQAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-10-16T18:11:09.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:09.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:09.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u8N000003e0MAQAY"},"Id":"01u8N000003e0MAQAY","Name":"REST + Product2 2023-10-16 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000003DfNfQAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-10-16T18:11:21.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:21.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:21.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW"},"Id":"a0v8N000002TJfPQAW","IsDeleted":false,"Name":"QL-0000546","CreatedDate":"2023-10-16T18:11:14.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:28.000+0000","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":1440.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihTUAQ","SBQQ__EndDate__c":"2024-10-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0LvQAI","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNQQA0","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":1440.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":1,"SBQQ__SegmentKey__c":"1697479871806","SBQQ__SegmentLabel__c":"Year 1","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2024-10-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":1440.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":1440.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":1440.00,"SBQQ__PackageTotal__c":1440.00,"SBQQ__PartnerTotal__c":1440.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW"},"Id":"a0v8N000002TJfQQAW","IsDeleted":false,"Name":"QL-0000547","CreatedDate":"2023-10-16T18:11:14.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:28.000+0000","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":1440.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihTUAQ","SBQQ__EndDate__c":"2025-10-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0LvQAI","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNQQA0","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":1440.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":2,"SBQQ__SegmentKey__c":"1697479871806","SBQQ__SegmentLabel__c":"Year 2","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2024-10-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2025-10-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-10-16","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":1440.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":1440.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":1440.00,"SBQQ__PackageTotal__c":1440.00,"SBQQ__PartnerTotal__c":1440.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG"},"Id":"a0v8N000002TJfeQAG","IsDeleted":false,"Name":"QL-0000552","CreatedDate":"2023-10-16T18:11:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:28.000+0000","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":1440.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihYUAQ","SBQQ__EndDate__c":"2024-10-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":2,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0M5QAI","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNaQAK","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":1440.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":1,"SBQQ__SegmentKey__c":"1697479877141","SBQQ__SegmentLabel__c":"Year 1","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2024-10-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":1440.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":1440.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":1440.00,"SBQQ__PackageTotal__c":1440.00,"SBQQ__PartnerTotal__c":1440.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG"},"Id":"a0v8N000002TJffQAG","IsDeleted":false,"Name":"QL-0000553","CreatedDate":"2023-10-16T18:11:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:28.000+0000","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":1440.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihYUAQ","SBQQ__EndDate__c":"2025-10-15","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":2,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0M5QAI","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNaQAK","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":1440.00,"SBQQ__Renewal__c":false,"SBQQ__SegmentIndex__c":2,"SBQQ__SegmentKey__c":"1697479877141","SBQQ__SegmentLabel__c":"Year 2","SBQQ__SpecialPrice__c":120.00,"SBQQ__StartDate__c":"2024-10-16","SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2025-10-15","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-10-16","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":1440.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":1440.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":1440.00,"SBQQ__PackageTotal__c":1440.00,"SBQQ__PartnerTotal__c":1440.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJftQAG"},"Id":"a0v8N000002TJftQAG","IsDeleted":false,"Name":"QL-0000556","CreatedDate":"2023-10-16T18:11:28.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:28.000+0000","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__AllowAssetRefund__c":false,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__ConfigurationRequired__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomerPrice__c":2880.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__Description__c":"A + great description","SBQQ__Existing__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.00,"SBQQ__NetPrice__c":2880.00,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":3,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":2880.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0MAQAY","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNfQAK","SBQQ__ProrateMultiplier__c":24.0000,"SBQQ__ProratedListPrice__c":2880.00,"SBQQ__ProratedPrice__c":2880.00,"SBQQ__Quantity__c":1.00,"SBQQ__RegularPrice__c":2880.00,"SBQQ__Renewal__c":false,"SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__Taxable__c":false,"SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":2880.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":24,"SBQQ__ListTotal__c":2880.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":2880.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":2880.00,"SBQQ__PackageTotal__c":2880.00,"SBQQ__PartnerTotal__c":2880.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":2880.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"PricebookEntries":[],"Products":["01t8N000003DfNQQA0"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":1440.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479871806","SBQQ__SegmentIndex__c":1,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJfPQAW","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihTUAQ","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000208","SystemModstamp":"2023-10-16T18:11:31.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:31.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:29.000+0000","EndDate":"2024-10-15","ServiceDate":"2023-10-16","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0LvQAI","OrderId":"8018N00000032buQAA","IsDeleted":false,"Product2Id":"01t8N000003DfNQQA0","Id":"8028N0000005p2eQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2eQAA","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t8N000003DfNQQA0"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":1440.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479871806","SBQQ__SegmentIndex__c":2,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJfQQAW","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihTUAQ","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000209","SystemModstamp":"2023-10-16T18:11:31.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:31.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:29.000+0000","EndDate":"2025-10-15","ServiceDate":"2024-10-16","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0LvQAI","OrderId":"8018N00000032buQAA","IsDeleted":false,"Product2Id":"01t8N000003DfNQQA0","Id":"8028N0000005p2fQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2fQAA","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t8N000003DfNaQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":1440.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479877141","SBQQ__SegmentIndex__c":1,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJfeQAG","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihYUAQ","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingType__c":"Arrears","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000210","SystemModstamp":"2023-10-16T18:11:31.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:31.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:29.000+0000","EndDate":"2024-10-15","ServiceDate":"2023-10-16","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0M5QAI","OrderId":"8018N00000032buQAA","IsDeleted":false,"Product2Id":"01t8N000003DfNaQAK","Id":"8028N0000005p2gQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2gQAA","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t8N000003DfNaQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":1440.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__SegmentKey__c":"1697479877141","SBQQ__SegmentIndex__c":2,"SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJffQAG","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__PriceDimension__c":"a0D8N000004nihYUAQ","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DimensionType__c":"Year","SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingType__c":"Arrears","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000211","SystemModstamp":"2023-10-16T18:11:31.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:31.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:29.000+0000","EndDate":"2025-10-15","ServiceDate":"2024-10-16","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0M5QAI","OrderId":"8018N00000032buQAA","IsDeleted":false,"Product2Id":"01t8N000003DfNaQAK","Id":"8028N0000005p2hQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2hQAA","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t8N000003DfNfQAK"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":2880.00,"SBQQ__SubscriptionTerm__c":24,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002TJftQAG","SBQQ__ProrateMultiplier__c":24.0000,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__PricingMethod__c":"List","SBQQ__OrderedQuantity__c":1.00,"SBQQ__DefaultSubscriptionTerm__c":1,"SBQQ__ContractingMethod__c":"Inherit","SBQQ__Contracted__c":false,"SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingType__c":"Arrears","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000212","SystemModstamp":"2023-10-16T18:11:31.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:31.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:29.000+0000","EndDate":"2025-10-15","ServiceDate":"2023-10-16","TotalPrice":2880.00,"ListPrice":120.00,"UnitPrice":2880.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003e0MAQAY","OrderId":"8018N00000032buQAA","IsDeleted":false,"Product2Id":"01t8N000003DfNfQAK","Id":"8028N0000005p2iQAA","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8028N0000005p2iQAA","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-09-29T17:43:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T17:43:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T17:43:59.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s8N000002d0dzQAA"],"Opportunities":["0068N000006QZRWQA4"],"Accounts":["0018N00000JbPHJQA3"],"OrderItems":["8028N0000005p2eQAA","8028N0000005p2fQAA","8028N0000005p2gQAA","8028N0000005p2hQAA","8028N0000005p2iQAA"],"Quotes":["a0z8N000000zBc6QAE"],"Opportunity":{"Id":"0068N000006QZRWQA4","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0068N000006QZRWQA4","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":8640.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-10-16T18:11:32.000+0000","LastViewedDate":"2023-10-16T18:11:32.000+0000","SystemModstamp":"2023-10-16T18:11:31.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:31.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-10-16T18:11:29.000+0000","TotalAmount":8640.00,"OrderNumber":"00000303","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-10-16T18:11:31.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-10-16","OpportunityId":"0068N000006QZRWQA4","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JbPHJQA3","OwnerId":"0058N000004zYG5QAM","Id":"8018N00000032buQAA","attributes":{"url":"/services/data/v59.0/sobjects/Order/8018N00000032buQAA","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"HasOptedOutOfFax","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"DoNotCall","sobject_type":"Contact","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ContractId","sobject_type":"Opportunity","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"IqScore","sobject_type":"Opportunity","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Primary_Contact__c","sobject_type":"Account","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingStreet","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingCity","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingState","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingPostalCode","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingCountry","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingLatitude","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingLongitude","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingGeocodeAccuracy","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"ShippingAddress","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"},{"sobject_field":"Name","sobject_type":"Contract","error_message":"Field + Not Accessible","error_type":"FieldNotAccessible"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Type,%20OpportunityId,%0A%20%20%20%20%20%20Opportunity.SBQQ__AmendedContract__c%0AFROM%20Order%0AWHERE%20Id%20=%20%278018N00000032buQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:33 GMT + Set-Cookie: + - BrowserId=cFIeH2xPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:33 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=383/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032buQAA"},"Type":"New","OpportunityId":"0068N000006QZRWQA4","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006QZRWQA4"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278018N00000032buQAA%27%20%20AND%20Status%20=%20%27Activated%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:33 GMT + Set-Cookie: + - BrowserId=cHtRX2xPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:34 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=382/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032buQAA"},"Id":"8018N00000032buQAA"}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/customers + body: + encoding: UTF-8 + string: name=REST+Account++2023-10-16+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0018N00000JbPHJQA3&metadata[salesforce_account_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F0018N00000JbPHJQA3 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - 31e76a51-33f7-494b-813a-71f4abed5ee4 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:34 GMT + Content-Type: + - application/json + Content-Length: + - '843' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fcustomers; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 31e76a51-33f7-494b-813a-71f4abed5ee4 + Original-Request: + - req_PD4MjPKGSFk9XP + Request-Id: + - req_PD4MjPKGSFk9XP + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "cus_OpaRxcAt1lVfwC", + "object": "customer", + "address": null, + "balance": 0, + "created": 1697479894, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "529695C4", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, + "livemode": false, + "metadata": { + "salesforce_account_id": "0018N00000JbPHJQA3", + "salesforce_account_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/0018N00000JbPHJQA3" + }, + "name": "REST Account 2023-10-16 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0018N00000JbPHJQA3 + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"cus_OpaRxcAt1lVfwC"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:34 GMT + Set-Cookie: + - BrowserId=cOBUe2xPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:34 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=387/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/products + body: + encoding: UTF-8 + string: name=REST+Product2++2023-10-16+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t8N000003DfNQQA0&metadata[salesforce_product2_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01t8N000003DfNQQA0 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_PD4MjPKGSFk9XP","request_duration_ms":419}}' + Idempotency-Key: + - 6c2c3913-ce94-48d1-bbb2-8d1d66a3e8d4 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:35 GMT + Content-Type: + - application/json + Content-Length: + - '760' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 6c2c3913-ce94-48d1-bbb2-8d1d66a3e8d4 + Original-Request: + - req_O25TdGbEQfWfmw + Request-Id: + - req_O25TdGbEQfWfmw + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaRgTFC9PbloX", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479895, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNQQA0", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNQQA0" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-7", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479895, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNQQA0 + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"prod_OpaRgTFC9PbloX"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:35 GMT + Set-Cookie: + - BrowserId=cT4Er2xPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:35 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=382/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNQQA0%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:35 GMT + Set-Cookie: + - BrowserId=cXGX6WxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:35 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=388/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNQQA0%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:35 GMT + Set-Cookie: + - BrowserId=cY0PDGxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:35 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=384/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNQQA0 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:36 GMT + Set-Cookie: + - BrowserId=cafp52xPEe6eVoH0UjEKMA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:36 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=384/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:35 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000003DfNQQA0"},"Id":"01t8N000003DfNQQA0","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:11:02.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:35.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:35.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPricingField__c":"Quantity","SBQQ__ChargeType__c":null,"SBQQ__Component__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationFieldSet__c":null,"SBQQ__ConfigurationFields__c":null,"SBQQ__ConfigurationFormTitle__c":null,"SBQQ__ConfigurationType__c":null,"SBQQ__ConfigurationValidator__c":null,"SBQQ__ConfiguredCodePattern__c":null,"SBQQ__ConfiguredDescriptionPattern__c":null,"SBQQ__CostEditable__c":false,"SBQQ__CostSchedule__c":null,"SBQQ__CustomConfigurationPage__c":null,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__CustomerCommunityAvailability__c":null,"SBQQ__DefaultPricingTable__c":null,"SBQQ__DefaultQuantity__c":1.0,"SBQQ__DescriptionLocked__c":false,"SBQQ__DiscountCategory__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DynamicPricingConstraint__c":null,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionLayout__c":null,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingGuidance__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductPictureID__c":null,"SBQQ__QuantityEditable__c":true,"SBQQ__QuantityScale__c":null,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__RenewalProduct__c":null,"SBQQ__SortOrder__c":null,"SBQQ__Specifications__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":1.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_OpaRgTFC9PbloX","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OpaRgTFC9PbloX"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2eQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:36 GMT + Set-Cookie: + - BrowserId=cchqhGxPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:36 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=386/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2eQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:36 GMT + Set-Cookie: + - BrowserId=ceKCFWxPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:36 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=385/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:36 GMT + Set-Cookie: + - BrowserId=cfzA92xPEe6acYHtsDH0lQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:36 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=387/5000000 + Etag: + - '"1100e741--gzip"' + Last-Modified: + - Wed, 11 Oct 2023 19:10:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"encoding":"UTF-8","maxBatchSize":200,"sobjects":[{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pp","label":"AI + Application","labelPlural":"AI Applications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplication/{ID}","describe":"/services/data/v58.0/sobjects/AIApplication/describe","sobject":"/services/data/v58.0/sobjects/AIApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6S9","label":"AI + Application config","labelPlural":"AI Application configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplicationConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplicationConfig/{ID}","describe":"/services/data/v58.0/sobjects/AIApplicationConfig/describe","sobject":"/services/data/v58.0/sobjects/AIApplicationConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qd","label":"AI + Insight Action","labelPlural":"AI Insight Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightAction/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightAction/describe","sobject":"/services/data/v58.0/sobjects/AIInsightAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9bq","label":"AI + Insight Feedback","labelPlural":"AI Insight Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightFeedback/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightFeedback/describe","sobject":"/services/data/v58.0/sobjects/AIInsightFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T2","label":"AI + Insight Reason","labelPlural":"AI Insight Reasons","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightReason","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightReason/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightReason/describe","sobject":"/services/data/v58.0/sobjects/AIInsightReason"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qc","label":"AI + Insight Value","labelPlural":"AI Insight Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightValue/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightValue/describe","sobject":"/services/data/v58.0/sobjects/AIInsightValue"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ae","label":"AI + Prediction Event","labelPlural":"AI Prediction Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIPredictionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIPredictionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AIPredictionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AIPredictionEvent/describe","sobject":"/services/data/v58.0/sobjects/AIPredictionEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qb","label":"AI + Record Insight","labelPlural":"AI Record Insights","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIRecordInsight","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIRecordInsight/{ID}","describe":"/services/data/v58.0/sobjects/AIRecordInsight/describe","sobject":"/services/data/v58.0/sobjects/AIRecordInsight"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Accepted + Event Relation","labelPlural":"Accepted Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AcceptedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AcceptedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/AcceptedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/AcceptedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"001","label":"Account","labelPlural":"Accounts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Account","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Account/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Account/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Account/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Account/listviews","describe":"/services/data/v58.0/sobjects/Account/describe","quickActions":"/services/data/v58.0/sobjects/Account/quickActions","layouts":"/services/data/v58.0/sobjects/Account/describe/layouts","sobject":"/services/data/v58.0/sobjects/Account"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Change Event","labelPlural":"Account Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CA","label":"Account + Clean Info","labelPlural":"Account Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/AccountCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/AccountCleanInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02Z","label":"Account + Contact Role","labelPlural":"Account Contact Roles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRole/{ID}","describe":"/services/data/v58.0/sobjects/AccountContactRole/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AccountContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Contact Role Change Event","labelPlural":"Account Contact Role Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Feed","labelPlural":"Account Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountFeed/{ID}","describe":"/services/data/v58.0/sobjects/AccountFeed/describe","sobject":"/services/data/v58.0/sobjects/AccountFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + History","labelPlural":"Account History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountHistory/{ID}","describe":"/services/data/v58.0/sobjects/AccountHistory/describe","sobject":"/services/data/v58.0/sobjects/AccountHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Account + Partner","labelPlural":"Account Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AccountPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AccountPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AccountPartner/{ID}","describe":"/services/data/v58.0/sobjects/AccountPartner/describe","layouts":"/services/data/v58.0/sobjects/AccountPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/AccountPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Account","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00r","label":"Account + Share","labelPlural":"Account Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountShare/{ID}","describe":"/services/data/v58.0/sobjects/AccountShare/describe","sobject":"/services/data/v58.0/sobjects/AccountShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07g","label":"Action + Link Group Template","labelPlural":"Action Link Group Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ActionLinkGroupTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07l","label":"Action + Link Template","labelPlural":"Action Link Templates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ActionLinkTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActionLinkTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H2","label":"Active + Feature License Metric","labelPlural":"Active Feature License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveFeatureLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H1","label":"Active + Permission Set License Metric","labelPlural":"Active Permission Set License + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivePermSetLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H0","label":"Active + Profile Metric","labelPlural":"Active Profile Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveProfileMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveProfileMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveProfileMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveProfileMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2fp","label":"Activity + Field History","labelPlural":"Activity Field Histories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityFieldHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Activity + History","labelPlural":"Activity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04m","label":"Additional + Directory Number","labelPlural":"Additional Directory Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AdditionalNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AdditionalNumber/{ID}","describe":"/services/data/v58.0/sobjects/AdditionalNumber/describe","sobject":"/services/data/v58.0/sobjects/AdditionalNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"130","label":"Address","labelPlural":"Addresses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Address","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Address/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Address/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Address/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Address/describe","layouts":"/services/data/v58.0/sobjects/Address/describe/layouts","sobject":"/services/data/v58.0/sobjects/Address"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Aggregate + Result","labelPlural":"Aggregate Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AggregateResult","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AggregateResult/{ID}","describe":"/services/data/v58.0/sobjects/AggregateResult/describe","sobject":"/services/data/v58.0/sobjects/AggregateResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Z7","label":"Alternative + Payment Method","labelPlural":"Alternative Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AlternativePaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/AlternativePaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethod"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AlternativePaymentMethod","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Alternative + Payment Method Share","labelPlural":"Alternative Payment Method Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AlternativePaymentMethodShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/describe","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bt","label":"Announcement","labelPlural":"Announcements","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Announcement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Announcement/{ID}","describe":"/services/data/v58.0/sobjects/Announcement/describe","sobject":"/services/data/v58.0/sobjects/Announcement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01p","label":"Apex + Class","labelPlural":"Apex Classes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApexClass","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApexClass/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApexClass/{ID}","describe":"/services/data/v58.0/sobjects/ApexClass/describe","layouts":"/services/data/v58.0/sobjects/ApexClass/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApexClass"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"099","label":"Visualforce + Component","labelPlural":"Visualforce Components","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexComponent/{ID}","describe":"/services/data/v58.0/sobjects/ApexComponent/describe","sobject":"/services/data/v58.0/sobjects/ApexComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06j","label":"Apex + Email Notification","labelPlural":"Apex Email Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexEmailNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexEmailNotification/{ID}","describe":"/services/data/v58.0/sobjects/ApexEmailNotification/describe","sobject":"/services/data/v58.0/sobjects/ApexEmailNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07L","label":"Apex + Debug Log","labelPlural":"Apex Debug Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexLog/{ID}","describe":"/services/data/v58.0/sobjects/ApexLog/describe","sobject":"/services/data/v58.0/sobjects/ApexLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"066","label":"Visualforce + Page","labelPlural":"Visualforce Pages","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexPage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPage/{ID}","describe":"/services/data/v58.0/sobjects/ApexPage/describe","sobject":"/services/data/v58.0/sobjects/ApexPage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ve","label":"Apex + Page Info","labelPlural":"Apex Pages Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexPageInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPageInfo/{ID}","describe":"/services/data/v58.0/sobjects/ApexPageInfo/describe","sobject":"/services/data/v58.0/sobjects/ApexPageInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"709","label":"Apex + Test Queue Item","labelPlural":"Apex Test Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestQueueItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestQueueItem/describe","sobject":"/services/data/v58.0/sobjects/ApexTestQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07M","label":"Apex + Test Result","labelPlural":"Apex Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05n","label":"Apex + Test Result Limit","labelPlural":"Apex Test Result Limit","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResultLimits","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResultLimits/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResultLimits/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResultLimits"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05m","label":"Apex + Test Run Result","labelPlural":"Apex Test Run Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestRunResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestRunResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestRunResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestRunResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05F","label":"Apex + Test Suite","labelPlural":"Apex Test Suites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestSuite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestSuite/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestSuite/describe","sobject":"/services/data/v58.0/sobjects/ApexTestSuite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01q","label":"Apex + Trigger","labelPlural":"Apex Triggers","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexTrigger","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTrigger/{ID}","describe":"/services/data/v58.0/sobjects/ApexTrigger/describe","sobject":"/services/data/v58.0/sobjects/ApexTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0kt","label":"Apex + Type Implementor","labelPlural":"Apex Type Implementors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTypeImplementor","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTypeImplementor/{ID}","describe":"/services/data/v58.0/sobjects/ApexTypeImplementor/describe","sobject":"/services/data/v58.0/sobjects/ApexTypeImplementor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j5","label":"API + Anomaly Event","labelPlural":"API Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ApiAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j6","label":"API + Anomaly Event Store","labelPlural":"API Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApiAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApiAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"API + Anomaly Event Store Feed","labelPlural":"API Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07t","label":"API + Event","labelPlural":"API Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEvent/{ID}","describe":"/services/data/v58.0/sobjects/ApiEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QI","label":"API + Event Stream","labelPlural":"API Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ApiEventStream/describe","sobject":"/services/data/v58.0/sobjects/ApiEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XI","label":"App + Analytics Query Request","labelPlural":"App Analytics Query Requests","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"AppAnalyticsQueryRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/{ID}","describe":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/describe","sobject":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06m","label":"App + Definition","labelPlural":"App Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AppDefinition/describe","sobject":"/services/data/v58.0/sobjects/AppDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mg","label":"App + Extension","labelPlural":"App Extensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppExtension/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppExtension/{ID}","describe":"/services/data/v58.0/sobjects/AppExtension/describe","layouts":"/services/data/v58.0/sobjects/AppExtension/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppExtension"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AppExtension","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"App + Extension Change Event","labelPlural":"App Extension Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppExtensionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AppExtensionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DS","label":"AppMenuItem","labelPlural":"AppMenuItems","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/AppMenuItem/describe","sobject":"/services/data/v58.0/sobjects/AppMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06o","label":"App + Tab Member","labelPlural":"App Tab Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppTabMember","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppTabMember/{ID}","describe":"/services/data/v58.0/sobjects/AppTabMember/describe","sobject":"/services/data/v58.0/sobjects/AppTabMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j8","label":"Application + Usage Assignment","labelPlural":"Application Usage Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppUsageAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppUsageAssignment/{ID}","describe":"/services/data/v58.0/sobjects/AppUsageAssignment/describe","layouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppUsageAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0mS","label":"Appointment + Topic Time Slot","labelPlural":"Appointment Topic Time Slots","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe","quickActions":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/quickActions","layouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Topic Time Slot History","labelPlural":"Appointment Topic Time Slot History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"52D","label":"Appointment + Bundle Aggregation Duration Downscale","labelPlural":"Appointment Bundle Aggregation + Duration Downscales","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrDurDnscale","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrDurDnscale","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Duration Downscale Feed","labelPlural":"Appointment Bundle + Aggregation Duration Downscale Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrDurDnscaleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7yi","label":"Appointment + Bundle Aggregation Policy","labelPlural":"Appointment Bundle Aggregation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Policy Feed","labelPlural":"Appointment Bundle Aggregation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Cv","label":"Appointment + Bundle Config","labelPlural":"Appointment Bundle Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleConfig","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfig/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleConfig/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleConfig/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleConfig"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Feed","labelPlural":"Appointment Bundle Config Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config History","labelPlural":"Appointment Bundle Config History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundleConfig","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Share","labelPlural":"Appointment Bundle Config Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sT","label":"Appointment + Bundle Policy","labelPlural":"Appointment Bundle Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Feed","labelPlural":"Appointment Bundle Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundlePolicy","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Share","labelPlural":"Appointment Bundle Policy Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7b0","label":"Appointment + Bundle Policy Service Territory","labelPlural":"Appointment Bundle Policy + Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicySvcTerr","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicySvcTerr","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Service Territory Feed","labelPlural":"Appointment Bundle Policy + Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicySvcTerrFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8XA","label":"Appointment + Bundle Propagation Policy","labelPlural":"Appointment Bundle Propagation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePropagatePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePropagatePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Propagation Policy Feed","labelPlural":"Appointment Bundle Propagation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePropagatePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6KP","label":"Appointment + Bundle Restriction Policy","labelPlural":"Appointment Bundle Restriction Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleRestrictPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleRestrictPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Restriction Policy Feed","labelPlural":"Appointment Bundle Restriction + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleRestrictPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lU","label":"Appointment + Bundle Sort Policy","labelPlural":"Appointment Bundle Sort Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleSortPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleSortPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Sort Policy Feed","labelPlural":"Appointment Bundle Sort Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleSortPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02i","label":"Asset","labelPlural":"Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Asset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Asset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Asset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Asset/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Asset/listviews","describe":"/services/data/v58.0/sobjects/Asset/describe","quickActions":"/services/data/v58.0/sobjects/Asset/quickActions","layouts":"/services/data/v58.0/sobjects/Asset/describe/layouts","sobject":"/services/data/v58.0/sobjects/Asset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nL","label":"Asset + Action","labelPlural":"Asset Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetAction/describe","layouts":"/services/data/v58.0/sobjects/AssetAction/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nM","label":"Asset + Action Source","labelPlural":"Asset Action Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetActionSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetActionSource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetActionSource/describe","layouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetActionSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0oV","label":"Asset + Attribute","labelPlural":"Asset Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetAttribute","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAttribute/{ID}","describe":"/services/data/v58.0/sobjects/AssetAttribute/describe","layouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAttribute"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetAttribute","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Attribute Change Event","labelPlural":"Asset Attribute Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetAttributeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Change Event","labelPlural":"Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gP","label":"Asset + Downtime Period","labelPlural":"Asset Downtime Periods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetDowntimePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriod/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe","quickActions":"/services/data/v58.0/sobjects/AssetDowntimePeriod/quickActions","layouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriod"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period Feed","labelPlural":"Asset Downtime Period Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period History","labelPlural":"Asset Downtime Period History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Feed","labelPlural":"Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + History","labelPlural":"Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1AR","label":"Asset + Relationship","labelPlural":"Asset Relationships","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetRelationship","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetRelationship/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetRelationship/describe","quickActions":"/services/data/v58.0/sobjects/AssetRelationship/quickActions","layouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetRelationship"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship Feed","labelPlural":"Asset Relationship Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship History","labelPlural":"Asset Relationship History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Asset","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"70a","label":"Asset + Share","labelPlural":"Asset Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetShare/{ID}","describe":"/services/data/v58.0/sobjects/AssetShare/describe","sobject":"/services/data/v58.0/sobjects/AssetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nK","label":"Asset + State Period","labelPlural":"Asset State Periods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetStatePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetStatePeriod/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetStatePeriod/describe","layouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetStatePeriod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Li","label":"Asset + Token Event","labelPlural":"Asset Token Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetTokenEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetTokenEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetTokenEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetTokenEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetTokenEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4xo","label":"Asset + Warranty","labelPlural":"Asset Warranties","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetWarranty","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetWarranty/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetWarranty/describe","quickActions":"/services/data/v58.0/sobjects/AssetWarranty/quickActions","layouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetWarranty"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Change Event","labelPlural":"Asset Warranty Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Feed","labelPlural":"Asset Warranty Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty History","labelPlural":"Asset Warranty History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03r","label":"Assigned + Resource","labelPlural":"Assigned Resources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssignedResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssignedResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssignedResource/describe","quickActions":"/services/data/v58.0/sobjects/AssignedResource/quickActions","layouts":"/services/data/v58.0/sobjects/AssignedResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssignedResource"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Change Event","labelPlural":"Assigned Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Feed","labelPlural":"Assigned Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssignedResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Q","label":"Assignment + Rule","labelPlural":"Assignment Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignmentRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignmentRule/{ID}","describe":"/services/data/v58.0/sobjects/AssignmentRule/describe","sobject":"/services/data/v58.0/sobjects/AssignmentRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kt","label":"Associated + Location","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated + Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex + Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async + Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async + Operation Log","labelPlural":"Async Operation Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AsyncOperationLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationLog/{ID}","describe":"/services/data/v58.0/sobjects/AsyncOperationLog/describe","layouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/AsyncOperationLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0YD","label":"Async + Operation Status","labelPlural":"Async Operation Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationStatus/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationStatus/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationStatus/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attached + Content Document","labelPlural":"Attached Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttachedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttachedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/AttachedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/AttachedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00P","label":"Attachment","labelPlural":"Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Attachment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Attachment/{ID}","describe":"/services/data/v58.0/sobjects/Attachment/describe","sobject":"/services/data/v58.0/sobjects/Attachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0tj","label":"Attribute + Definition","labelPlural":"Attribute Definitions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/AttributeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Feed","labelPlural":"Attribute Definition Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition History","labelPlural":"Attribute Definition History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Share","labelPlural":"Attribute Definition Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v5","label":"Attribute + Picklist","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute + Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning + Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura + Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle + Info","labelPlural":"AuraDefinitionBundle Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundleInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ad","label":"AuraDefinition + Info","labelPlural":"AuraDefinition Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07T","label":"Authentication + Configuration","labelPlural":"Authentication Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfig/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfig/describe","sobject":"/services/data/v58.0/sobjects/AuthConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07U","label":"Authentication + Configuration Auth. Provider","labelPlural":"Authentication Configuration + Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfigProviders","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfigProviders/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfigProviders/describe","sobject":"/services/data/v58.0/sobjects/AuthConfigProviders"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SO","label":"Auth. + Provider","labelPlural":"Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthProvider/{ID}","describe":"/services/data/v58.0/sobjects/AuthProvider/describe","sobject":"/services/data/v58.0/sobjects/AuthProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ak","label":"Auth + Session","labelPlural":"Auth Sessions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthSession","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthSession/{ID}","describe":"/services/data/v58.0/sobjects/AuthSession/describe","sobject":"/services/data/v58.0/sobjects/AuthSession"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cI","label":"Authorization + Form","labelPlural":"Authorization Forms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationForm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationForm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationForm/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationForm/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationForm"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cK","label":"Authorization + Form Consent","labelPlural":"Authorization Form Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormConsent/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Change Event","labelPlural":"Authorization Form Consent Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent History","labelPlural":"Authorization Form Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Share","labelPlural":"Authorization Form Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cM","label":"Authorization + Form Data Use","labelPlural":"Authorization Form Data Uses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormDataUse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUse"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormDataUse","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use History","labelPlural":"Authorization Form Data Use History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormDataUse","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use Share","labelPlural":"Authorization Form Data Use Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationForm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form History","labelPlural":"Authorization Form History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationForm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Share","labelPlural":"Authorization Form Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cN","label":"Authorization + Form Text","labelPlural":"Authorization Form Texts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormText/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormText/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormText/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormText"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text Feed","labelPlural":"Authorization Form Text Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text History","labelPlural":"Authorization Form Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08P","label":"Background + Operation","labelPlural":"Background Operations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"BackgroundOperation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BackgroundOperation/{ID}","describe":"/services/data/v58.0/sobjects/BackgroundOperation/describe","layouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/layouts","sobject":"/services/data/v58.0/sobjects/BackgroundOperation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QQ","label":"Batch + Apex Error Platform Event","labelPlural":"Batch Apex Error Platform Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BatchApexErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BatchApexErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BatchApexErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BatchApexErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/BatchApexErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"016","label":"Letterhead","labelPlural":"Letterheads","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandTemplate/{ID}","describe":"/services/data/v58.0/sobjects/BrandTemplate/describe","sobject":"/services/data/v58.0/sobjects/BrandTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lw","label":"Branding + Set","labelPlural":"Branding Sets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSet/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSet/describe","sobject":"/services/data/v58.0/sobjects/BrandingSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ly","label":"Branding + Set Property","labelPlural":"Branding Set Properties","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSetProperty","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSetProperty/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSetProperty/describe","sobject":"/services/data/v58.0/sobjects/BrandingSetProperty"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5LH","label":"Briefcase + Assignment","labelPlural":"Briefcase Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignment/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseAssignment/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseAssignment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Assignment Change Event","labelPlural":"Briefcase Assignment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rY","label":"Briefcase + Definition","labelPlural":"Briefcase Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinition/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseDefinition/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinition"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Definition Change Event","labelPlural":"Briefcase Definition Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinitionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rX","label":"Briefcase + Rule","labelPlural":"Briefcase Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRule/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRule/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rZ","label":"Briefcase + Rule Filter","labelPlural":"Briefcase Rule Filters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRuleFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRuleFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hx","label":"Bulk + API Result Event","labelPlural":"Bulk API Result Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BulkApiResultEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BulkApiResultEvent/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hJ","label":"Bulk + API Result Event Store","labelPlural":"Bulk API Result Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEventStore/{ID}","describe":"/services/data/v58.0/sobjects/BulkApiResultEventStore/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1BU","label":"Business + Brand","labelPlural":"Business Brands","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessBrand","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessBrand/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/BusinessBrand/describe","layouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessBrand"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"BusinessBrand","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Business + Brand Share","labelPlural":"Business Brand Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessBrandShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessBrandShare/{ID}","describe":"/services/data/v58.0/sobjects/BusinessBrandShare/describe","sobject":"/services/data/v58.0/sobjects/BusinessBrandShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01m","label":"Business + Hours","labelPlural":"Business Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessHours/{ID}","describe":"/services/data/v58.0/sobjects/BusinessHours/describe","layouts":"/services/data/v58.0/sobjects/BusinessHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessHours"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"019","label":"Business + Process","labelPlural":"Business Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessProcess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessProcess/{ID}","describe":"/services/data/v58.0/sobjects/BusinessProcess/describe","sobject":"/services/data/v58.0/sobjects/BusinessProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"023","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Calendar","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Calendar/{ID}","describe":"/services/data/v58.0/sobjects/Calendar/describe","sobject":"/services/data/v58.0/sobjects/Calendar"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03A","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarView","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarView/{ID}","describe":"/services/data/v58.0/sobjects/CalendarView/describe","sobject":"/services/data/v58.0/sobjects/CalendarView"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CalendarView","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Calendar + Share","labelPlural":"Calendar Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarViewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarViewShare/{ID}","describe":"/services/data/v58.0/sobjects/CalendarViewShare/describe","sobject":"/services/data/v58.0/sobjects/CalendarViewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04v","label":"Call + Center","labelPlural":"Call Centers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCenter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCenter/{ID}","describe":"/services/data/v58.0/sobjects/CallCenter/describe","sobject":"/services/data/v58.0/sobjects/CallCenter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hn","label":"CallCoachingMediaProvider","labelPlural":"CallCoachingMediaProviders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCoachingMediaProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/{ID}","describe":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/describe","sobject":"/services/data/v58.0/sobjects/CallCoachingMediaProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"701","label":"Campaign","labelPlural":"Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Campaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Campaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Campaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Campaign/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Campaign/listviews","describe":"/services/data/v58.0/sobjects/Campaign/describe","quickActions":"/services/data/v58.0/sobjects/Campaign/quickActions","layouts":"/services/data/v58.0/sobjects/Campaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/Campaign"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Change Event","labelPlural":"Campaign Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Feed","labelPlural":"Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/CampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/CampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Field History","labelPlural":"Campaign Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/CampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/CampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03V","label":"Campaign + Influence Model","labelPlural":"Campaign Influence Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignInfluenceModel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignInfluenceModel/{ID}","describe":"/services/data/v58.0/sobjects/CampaignInfluenceModel/describe","sobject":"/services/data/v58.0/sobjects/CampaignInfluenceModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00v","label":"Campaign + Member","labelPlural":"Campaign Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMember/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMember/describe","layouts":"/services/data/v58.0/sobjects/CampaignMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Change Event","labelPlural":"Campaign Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Y","label":"Campaign + Member Status","labelPlural":"Campaign Member Statuses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatus","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatus/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe","layouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMemberStatus","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Status Change Event","labelPlural":"Campaign Member Status Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatusChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Campaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08s","label":"Campaign + Share","labelPlural":"Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/CampaignShare/describe","sobject":"/services/data/v58.0/sobjects/CampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03O","label":"Card + Payment Method","labelPlural":"Card Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CardPaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CardPaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/CardPaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/CardPaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/CardPaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"500","label":"Case","labelPlural":"Cases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Case","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Case/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Case/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Case/describe/approvalLayouts","caseArticleSuggestions":"/services/data/v58.0/sobjects/Case/suggestedArticles","caseRowArticleSuggestions":"/services/data/v58.0/sobjects/Case/{ID}/suggestedArticles","listviews":"/services/data/v58.0/sobjects/Case/listviews","describe":"/services/data/v58.0/sobjects/Case/describe","quickActions":"/services/data/v58.0/sobjects/Case/quickActions","layouts":"/services/data/v58.0/sobjects/Case/describe/layouts","sobject":"/services/data/v58.0/sobjects/Case"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Change Event","labelPlural":"Case Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CaseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CaseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CaseChangeEvent"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Case + Comment","labelPlural":"Case Comments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseComment/{ID}","describe":"/services/data/v58.0/sobjects/CaseComment/describe","layouts":"/services/data/v58.0/sobjects/CaseComment/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03j","label":"Case + Contact Role","labelPlural":"Case Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseContactRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseContactRole/describe","layouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Feed","labelPlural":"Case Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseFeed/{ID}","describe":"/services/data/v58.0/sobjects/CaseFeed/describe","sobject":"/services/data/v58.0/sobjects/CaseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + History","labelPlural":"Case History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseHistory/{ID}","describe":"/services/data/v58.0/sobjects/CaseHistory/describe","sobject":"/services/data/v58.0/sobjects/CaseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"555","label":"Case + Milestone","labelPlural":"Case Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseMilestone","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseMilestone/{ID}","describe":"/services/data/v58.0/sobjects/CaseMilestone/describe","layouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseMilestone"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01n","label":"Case + Share","labelPlural":"Case Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseShare/{ID}","describe":"/services/data/v58.0/sobjects/CaseShare/describe","sobject":"/services/data/v58.0/sobjects/CaseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"010","label":"Case + Solution","labelPlural":"Case Solution","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseSolution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseSolution/{ID}","describe":"/services/data/v58.0/sobjects/CaseSolution/describe","sobject":"/services/data/v58.0/sobjects/CaseSolution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Status Value","labelPlural":"Case Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseStatus/{ID}","describe":"/services/data/v58.0/sobjects/CaseStatus/describe","sobject":"/services/data/v58.0/sobjects/CaseStatus"}},{"activateable":false,"associateEntityType":"TeamMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member","labelPlural":"Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamMember"}},{"activateable":false,"associateEntityType":"TeamRole","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member Role","labelPlural":"Case Team Member Role","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamRole/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamRole"}},{"activateable":false,"associateEntityType":"TeamTemplate","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team","labelPlural":"Predefined Case Team","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplate/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplate/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplate"}},{"activateable":false,"associateEntityType":"TeamTemplateMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Member","labelPlural":"Predefined Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateMember"}},{"activateable":false,"associateEntityType":"TeamTemplateRecord","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Record","labelPlural":"Predefined Case Team Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02o","label":"Category + Data","labelPlural":"Category Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryData/{ID}","describe":"/services/data/v58.0/sobjects/CategoryData/describe","sobject":"/services/data/v58.0/sobjects/CategoryData"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02n","label":"Category + Node","labelPlural":"Category Nodes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryNode/{ID}","describe":"/services/data/v58.0/sobjects/CategoryNode/describe","sobject":"/services/data/v58.0/sobjects/CategoryNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ca","label":"Chatter + Activity","labelPlural":"Chatter Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterActivity/{ID}","describe":"/services/data/v58.0/sobjects/ChatterActivity/describe","sobject":"/services/data/v58.0/sobjects/ChatterActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MY","label":"Extension","labelPlural":"Extensions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtension/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtension/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtension"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ob","label":"Chatter + Extension Configuration","labelPlural":"Chatter Extension Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtensionConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtensionConfig/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtensionConfig/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtensionConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"713","label":"Client + Browser","labelPlural":"Client Browser","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ClientBrowser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ClientBrowser/{ID}","describe":"/services/data/v58.0/sobjects/ClientBrowser/describe","sobject":"/services/data/v58.0/sobjects/ClientBrowser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0F9","label":"Group","labelPlural":"Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroup/{ID}","listviews":"/services/data/v58.0/sobjects/CollaborationGroup/listviews","describe":"/services/data/v58.0/sobjects/CollaborationGroup/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CollaborationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Group + Feed","labelPlural":"Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FB","label":"Group + Member","labelPlural":"Group Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMember/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I5","label":"Group + Member Request","labelPlural":"Group Member Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMemberRequest","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Aa","label":"Group + Record","labelPlural":"Group Records","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupRecord/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H1","label":"Chatter + Invitation","labelPlural":"Chatter Invitations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationInvitation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationInvitation/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationInvitation/describe","sobject":"/services/data/v58.0/sobjects/CollaborationInvitation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9CR","label":"Collaboration + Room","labelPlural":"Collaboration Rooms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationRoom","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationRoom/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationRoom/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationRoom/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationRoom"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05k","label":"Color + Definition","labelPlural":"Color Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ColorDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ColorDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ColorDefinition/describe","sobject":"/services/data/v58.0/sobjects/ColorDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note, + Attachment, Google Doc And File","labelPlural":"Notes, Attachments, Google + Docs And Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CombinedAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CombinedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/CombinedAttachment/describe","sobject":"/services/data/v58.0/sobjects/CombinedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xl","label":"Communication + Subscription","labelPlural":"Communication Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscription/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscription/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscription/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscription/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eB","label":"Communication + Subscription Channel Type","labelPlural":"Communication Subscription Channel + Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Feed","labelPlural":"Communication Subscription + Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type History","labelPlural":"Communication Subscription + Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Share","labelPlural":"Communication Subscription + Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dY","label":"Communication + Subscription Consent","labelPlural":"Communication Subscription Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionConsent/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Change Event","labelPlural":"Communication Subscription + Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Feed","labelPlural":"Communication Subscription Consent + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent History","labelPlural":"Communication Subscription Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Share","labelPlural":"Communication Subscription Consent + Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Feed","labelPlural":"Communication Subscription Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription History","labelPlural":"Communication Subscription History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscription","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Share","labelPlural":"Communication Subscription Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0al","label":"Communication + Subscription Timing","labelPlural":"Communication Subscription Timings","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionTiming","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTiming/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionTiming/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTiming"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing Feed","labelPlural":"Communication Subscription Timing + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing History","labelPlural":"Communication Subscription Timing History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09a","label":"Zone","labelPlural":"Zones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Community","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Community/{ID}","describe":"/services/data/v58.0/sobjects/Community/describe","sobject":"/services/data/v58.0/sobjects/Community"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QR","label":"Concurrent + Long Running Apex Error Event","labelPlural":"Concurrent Long Running Apex + Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConcurLongRunApexErrEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/describe","sobject":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ah","label":"Conference + Number","labelPlural":"Conference Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConferenceNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConferenceNumber/{ID}","describe":"/services/data/v58.0/sobjects/ConferenceNumber/describe","sobject":"/services/data/v58.0/sobjects/ConferenceNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H4","label":"Connected + App","labelPlural":"Connected Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConnectedApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConnectedApplication/{ID}","describe":"/services/data/v58.0/sobjects/ConnectedApplication/describe","sobject":"/services/data/v58.0/sobjects/ConnectedApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mo","label":"Consumption + Rate","labelPlural":"Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionRate/describe","layouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionRate"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionRate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Rate History ID","labelPlural":"Consumption Rate History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionRateHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionRateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mh","label":"Consumption + Schedule","labelPlural":"Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionSchedule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe","quickActions":"/services/data/v58.0/sobjects/ConsumptionSchedule/quickActions","layouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionSchedule"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ConsumptionSchedule","labelPlural":"ConsumptionSchedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule History ID","labelPlural":"Consumption Schedule History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ConsumptionSchedule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule Share","labelPlural":"Consumption Schedule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"003","label":"Contact","labelPlural":"Contacts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Contact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contact/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contact/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contact/listviews","describe":"/services/data/v58.0/sobjects/Contact/describe","quickActions":"/services/data/v58.0/sobjects/Contact/quickActions","layouts":"/services/data/v58.0/sobjects/Contact/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contact"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Change Event","labelPlural":"Contact Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CC","label":"Contact + Clean Info","labelPlural":"Contact Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/ContactCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/ContactCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Feed","labelPlural":"Contact Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContactFeed/describe","sobject":"/services/data/v58.0/sobjects/ContactFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + History","labelPlural":"Contact History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8lW","label":"Contact + Point Address","labelPlural":"Contact Point Addresses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddress/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointAddress/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointAddress/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointAddress"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Change Event","labelPlural":"Contact Point Address Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address History","labelPlural":"Contact Point Address History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointAddress","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Share","labelPlural":"Contact Point Address Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZX","label":"Contact + Point Consent","labelPlural":"Contact Point Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Change Event","labelPlural":"Contact Point Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent History","labelPlural":"Contact Point Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Share","labelPlural":"Contact Point Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Vl","label":"Contact + Point Email","labelPlural":"Contact Point Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmail/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointEmail/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointEmail/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Change Event","labelPlural":"Contact Point Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email History","labelPlural":"Contact Point Email History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Share","labelPlural":"Contact Point Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ow","label":"Contact + Point Phone","labelPlural":"Contact Point Phones","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointPhone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointPhone/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointPhone/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointPhone"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Change Event","labelPlural":"Contact Point Phone Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone History","labelPlural":"Contact Point Phone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointPhone","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Share","labelPlural":"Contact Point Phone Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZY","label":"Contact + Point Type Consent","labelPlural":"Contact Point Type Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointTypeConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Change Event","labelPlural":"Contact Point Type Consent + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent History","labelPlural":"Contact Point Type Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointTypeConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Share","labelPlural":"Contact Point Type Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tz","label":"Contact + Request","labelPlural":"Contact Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactRequest/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequest/describe","layouts":"/services/data/v58.0/sobjects/ContactRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Request Share","labelPlural":"Contact Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ContactRequestShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03s","label":"Contact + Share","labelPlural":"Contact Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactShare/describe","sobject":"/services/data/v58.0/sobjects/ContactShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03S","label":"Asset + File","labelPlural":"Asset Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentAsset/{ID}","describe":"/services/data/v58.0/sobjects/ContentAsset/describe","sobject":"/services/data/v58.0/sobjects/ContentAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05T","label":"Content + Body","labelPlural":"Content Bodies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentBody","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentBody/{ID}","describe":"/services/data/v58.0/sobjects/ContentBody/describe","sobject":"/services/data/v58.0/sobjects/ContentBody"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05D","label":"Content + Delivery","labelPlural":"Content Deliveries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistribution","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistribution/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistribution/describe","sobject":"/services/data/v58.0/sobjects/ContentDistribution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05H","label":"Content + Delivery View","labelPlural":"Content Delivery Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistributionView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistributionView/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistributionView/describe","sobject":"/services/data/v58.0/sobjects/ContentDistributionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"069","label":"Content + Document","labelPlural":"Content Documents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContentDocument","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocument/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocument/describe","layouts":"/services/data/v58.0/sobjects/ContentDocument/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocument"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Change Event","labelPlural":"Content Document Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ContentDocument + Feed","labelPlural":"ContentDocument Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentFeed/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document History","labelPlural":"Content Document History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06A","label":"Content + Document Link","labelPlural":"Content Document Link","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentLink/describe","layouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocumentLink"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocumentLink","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Link Change Event","labelPlural":"Content Document Link Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLinkChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"057","label":"Content + Document Subscription","labelPlural":"Content Document Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07H","label":"Content + Folder","labelPlural":"Content Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolder/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolder/describe","sobject":"/services/data/v58.0/sobjects/ContentFolder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Folder Item","labelPlural":"Content Folder Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentFolderItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentFolderItem/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderItem/describe","layouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentFolderItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07v","label":"Content + Folder Link","labelPlural":"Content Folder Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderLink/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07I","label":"Content + Folder Member","labelPlural":"Content Folder Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderMember/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05V","label":"Content + Notification","labelPlural":"Content Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentNotification/{ID}","describe":"/services/data/v58.0/sobjects/ContentNotification/describe","sobject":"/services/data/v58.0/sobjects/ContentNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05Q","label":"Content + Tag Subscription","labelPlural":"Content Tag Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentTagSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentTagSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentTagSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentTagSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05S","label":"Content + User Subscription","labelPlural":"Content User Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentUserSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentUserSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentUserSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentUserSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"068","label":"Content + Version","labelPlural":"Content Versions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentVersion/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentVersion/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersion/describe","layouts":"/services/data/v58.0/sobjects/ContentVersion/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentVersion"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version Change Event","labelPlural":"Content Version Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05C","label":"Content + Version Comment","labelPlural":"Content Version Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionComment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionComment/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionComment/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionComment"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version History","labelPlural":"Content Version History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05J","label":"Content + Version Rating","labelPlural":"Content Version Ratings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionRating","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionRating/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionRating/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionRating"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"058","label":"Library","labelPlural":"Libraries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspace","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspace/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspace/describe","layouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentWorkspace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"059","label":"Library + Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library + Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library + Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract + Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + History","labelPlural":"Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"811","label":"Contract + Line Item","labelPlural":"Contract Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineItem/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Change Event","labelPlural":"Contract Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Feed","labelPlural":"Contract Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item History","labelPlural":"Contract Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3lp","label":"Contract + Line Outcome","labelPlural":"Contract Line Outcomes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcome","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcome/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcome/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineOutcome/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcome"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sD","label":"Contract + Line Outcome Data","labelPlural":"Contract Line Outcome Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcomeData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeData/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe","layouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineOutcomeData","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Data Change Event","labelPlural":"Contract Line Outcome Data + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeDataChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential + Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential + Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential + Stuffing Event Store Feed","labelPlural":"Credential Stuffing Event Store + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"50g","label":"Credit + Memo","labelPlural":"Credit Memos","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CreditMemo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemo/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemo/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemo/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemo/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Feed","labelPlural":"Credit Memo Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo History","labelPlural":"Credit Memo History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4sF","label":"Credit + Memo Invoice Application","labelPlural":"Credit Memo Invoice Applications","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplication","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplication/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoInvApplication/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplication"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Invoice Application History","labelPlural":"Credit Memo Invoice Application History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9yx","label":"Credit + Memo Line","labelPlural":"Credit Memo Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoLine/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoLine/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line Feed","labelPlural":"Credit Memo Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line History","labelPlural":"Credit Memo Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CreditMemo","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Share","labelPlural":"Credit Memo Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoShare/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoShare/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08a","label":"Cron + Job","labelPlural":"Cron Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronJobDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronJobDetail/{ID}","describe":"/services/data/v58.0/sobjects/CronJobDetail/describe","sobject":"/services/data/v58.0/sobjects/CronJobDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08e","label":"Scheduled + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom + Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom + Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom + Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom + Help Menu Section","labelPlural":"Custom Help Menu Sections","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuSection","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuSection/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuSection/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuSection"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XH","label":"Custom + HTTP Header","labelPlural":"Custom HTTP Headers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomHttpHeader","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomHttpHeader/{ID}","describe":"/services/data/v58.0/sobjects/CustomHttpHeader/describe","layouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomHttpHeader"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ML","label":"Custom + Notification Type","labelPlural":"Custom Notification Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomNotificationType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomNotificationType/{ID}","describe":"/services/data/v58.0/sobjects/CustomNotificationType/describe","sobject":"/services/data/v58.0/sobjects/CustomNotificationType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3NA","label":"Custom + Object Usage By User License Metric","labelPlural":"Custom Object Usage By + User License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomObjectUserLicenseMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/{ID}","describe":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/describe","sobject":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CP","label":"Custom + Permission","labelPlural":"Custom Permissions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermission/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermission/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermission/describe","layouts":"/services/data/v58.0/sobjects/CustomPermission/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PD","label":"Custom + Permission Dependency","labelPlural":"Custom Permission Dependencies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermissionDependency","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermissionDependency/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe","layouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermissionDependency"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0o6","label":"Customer","labelPlural":"Customers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Customer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Customer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Customer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Customer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Customer/describe","layouts":"/services/data/v58.0/sobjects/Customer/describe/layouts","sobject":"/services/data/v58.0/sobjects/Customer"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Customer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Customer + Share","labelPlural":"Customer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomerShare/{ID}","describe":"/services/data/v58.0/sobjects/CustomerShare/describe","sobject":"/services/data/v58.0/sobjects/CustomerShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06E","label":"D&B + Company","labelPlural":"D&B Companies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DandBCompany","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Z","label":"Dashboard","labelPlural":"Dashboards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Dashboard","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Dashboard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Dashboard/{ID}","listviews":"/services/data/v58.0/sobjects/Dashboard/listviews","describe":"/services/data/v58.0/sobjects/Dashboard/describe","layouts":"/services/data/v58.0/sobjects/Dashboard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Dashboard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01a","label":"Dashboard + Component","labelPlural":"Dashboard Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponent/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponent/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"DashboardComponent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Component Feed","labelPlural":"Dashboard Component Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponentFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponentFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponentFeed"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Dashboard","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Feed","labelPlural":"Dashboard Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03Q","label":"Data + Assessment Field Metric","labelPlural":"Data Assessment Field Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentFieldMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03P","label":"Data + Assessment Metric","labelPlural":"Data Assessment Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03R","label":"Data + Assessment Field Value Metric","labelPlural":"Data Assessment Field Value + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentValueMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentValueMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1e5","label":"Data + Object Data Change Event","labelPlural":"Data Object Data Change Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataObjectDataChgEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/describe","sobject":"/services/data/v58.0/sobjects/DataObjectDataChgEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05a","label":"Data + Statistics","labelPlural":"Data Statistics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataStatistics","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataStatistics/{ID}","describe":"/services/data/v58.0/sobjects/DataStatistics/describe","sobject":"/services/data/v58.0/sobjects/DataStatistics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4dt","label":"Data + Type","labelPlural":"Data Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataType/{ID}","describe":"/services/data/v58.0/sobjects/DataType/describe","sobject":"/services/data/v58.0/sobjects/DataType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZT","label":"Data + Use Legal Basis","labelPlural":"Data Use Legal Bases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUseLegalBasis","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasis/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe","layouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasis"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUseLegalBasis","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis History","labelPlural":"Data Use Legal Basis History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUseLegalBasis","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis Share","labelPlural":"Data Use Legal Basis Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZW","label":"Data + Use Purpose","labelPlural":"Data Use Purposes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUsePurpose","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUsePurpose/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUsePurpose/describe","quickActions":"/services/data/v58.0/sobjects/DataUsePurpose/quickActions","layouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUsePurpose"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUsePurpose","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose History","labelPlural":"Data Use Purpose History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUsePurpose","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose Share","labelPlural":"Data Use Purpose Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeShare/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07m","label":"Data.com + Address","labelPlural":"Data.com Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudAddress","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudAddress/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudAddress/describe","sobject":"/services/data/v58.0/sobjects/DatacloudAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09K","label":"Data.com + Company","labelPlural":"Data.com Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08C","label":"Data.com + Contact","labelPlural":"Data.com Contacts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudContact","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudContact/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudContact/describe","sobject":"/services/data/v58.0/sobjects/DatacloudContact"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09N","label":"D&B + Company","labelPlural":"DandB Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudDandBCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudDandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudDandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09O","label":"Data.com + Owned Entity","labelPlural":"Data.com Owned Entity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudOwnedEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/describe","sobject":"/services/data/v58.0/sobjects/DatacloudOwnedEntity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09F","label":"Data.com + Usage","labelPlural":"Data.com Usage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudPurchaseUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/describe","sobject":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Declined + Event Relation","labelPlural":"Declined Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeclinedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeclinedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/DeclinedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/DeclinedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00C","label":"Recycle + Bin Item","labelPlural":"Recycle Bin","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeleteEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeleteEvent/{ID}","describe":"/services/data/v58.0/sobjects/DeleteEvent/describe","sobject":"/services/data/v58.0/sobjects/DeleteEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DS","label":"Digital + Signature","labelPlural":"Digital Signatures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignature","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignature/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DigitalSignature/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DigitalSignature/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignature"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"DigitalSignature","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Digital + Signature Change Event","labelPlural":"Digital Signature Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignatureChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DW","label":"Digital + Wallet","labelPlural":"Digital Wallets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DigitalWallet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DigitalWallet/{ID}","describe":"/services/data/v58.0/sobjects/DigitalWallet/describe","quickActions":"/services/data/v58.0/sobjects/DigitalWallet/quickActions","layouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DigitalWallet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"015","label":"Document","labelPlural":"Documents","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Document","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Document/{ID}","describe":"/services/data/v58.0/sobjects/Document/describe","sobject":"/services/data/v58.0/sobjects/Document"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05X","label":"Document + Entity Map","labelPlural":"Document Entity Map","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DocumentAttachmentMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DocumentAttachmentMap/{ID}","describe":"/services/data/v58.0/sobjects/DocumentAttachmentMap/describe","sobject":"/services/data/v58.0/sobjects/DocumentAttachmentMap"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I4","label":"Domain","labelPlural":"Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Domain","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Domain/{ID}","describe":"/services/data/v58.0/sobjects/Domain/describe","sobject":"/services/data/v58.0/sobjects/Domain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jf","label":"Custom + URL","labelPlural":"Custom URLs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DomainSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DomainSite/{ID}","describe":"/services/data/v58.0/sobjects/DomainSite/describe","sobject":"/services/data/v58.0/sobjects/DomainSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GL","label":"Duplicate + Record Item","labelPlural":"Duplicate Record Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DuplicateRecordItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GK","label":"Duplicate + Record Set","labelPlural":"Duplicate Record Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRecordSet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordSet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bm","label":"Duplicate + Rule","labelPlural":"Duplicate Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRule/{ID}","describe":"/services/data/v58.0/sobjects/DuplicateRule/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06F","label":"EmailCapture","labelPlural":"Email + Captures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailCapture","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailCapture/{ID}","describe":"/services/data/v58.0/sobjects/EmailCapture/describe","sobject":"/services/data/v58.0/sobjects/EmailCapture"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T6","label":"Email + Domain Filter","labelPlural":"Email Domain Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainFilter/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainFilter/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09P","label":"Email + Domain Key","labelPlural":"Email Domain Keys","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainKey","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainKey/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainKey/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainKey"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02s","label":"Email + Message","labelPlural":"Email Messages","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EmailMessage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailMessage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EmailMessage/describe","quickActions":"/services/data/v58.0/sobjects/EmailMessage/quickActions","layouts":"/services/data/v58.0/sobjects/EmailMessage/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailMessage"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailMessage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Message Change Event","labelPlural":"Email Message Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CZ","label":"Email + Message Relation","labelPlural":"Email Message Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageRelation/{ID}","describe":"/services/data/v58.0/sobjects/EmailMessageRelation/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"26Z","label":"Email + Relay","labelPlural":"Email Relay","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailRelay","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailRelay/{ID}","describe":"/services/data/v58.0/sobjects/EmailRelay/describe","sobject":"/services/data/v58.0/sobjects/EmailRelay"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"093","label":"Email + Services Address","labelPlural":"Email Services Address","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesAddress/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesAddress/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"091","label":"Email + Service","labelPlural":"Email Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesFunction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesFunction/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesFunction/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"018","label":"Email + Status","labelPlural":"Email Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailStatus/{ID}","describe":"/services/data/v58.0/sobjects/EmailStatus/describe","sobject":"/services/data/v58.0/sobjects/EmailStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00X","label":"Email + Template","labelPlural":"Email Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EmailTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EmailTemplate/describe","layouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Template Change Event","labelPlural":"Email Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lq","label":"Embedded + Service","labelPlural":"Embedded Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uu","label":"Embedded + Service Label","labelPlural":"Embedded Service Labels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceLabel","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceLabel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eF","label":"Engagement + Channel Type","labelPlural":"Engagement Channel Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EngagementChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EngagementChannelType/describe","quickActions":"/services/data/v58.0/sobjects/EngagementChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/EngagementChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Feed","labelPlural":"Engagement Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type History","labelPlural":"Engagement Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"EngagementChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Share","labelPlural":"Engagement Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rn","label":"Enhanced + Letterhead","labelPlural":"Enhanced Letterheads","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EnhancedLetterhead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterhead/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe","layouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/layouts","sobject":"/services/data/v58.0/sobjects/EnhancedLetterhead"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EnhancedLetterhead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Enhanced + Letterhead Feed","labelPlural":"Enhanced Letterhead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EnhancedLetterheadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/describe","sobject":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"550","label":"Entitlement","labelPlural":"Entitlements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Entitlement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Entitlement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Entitlement/describe","layouts":"/services/data/v58.0/sobjects/Entitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/Entitlement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Change Event","labelPlural":"Entitlement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EntitlementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EntitlementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EntitlementChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E7","label":"Entitlement + Contact","labelPlural":"Entitlement Contacts","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntitlementContact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntitlementContact/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementContact/describe","layouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntitlementContact"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Feed","labelPlural":"Entitlement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementFeed/describe","sobject":"/services/data/v58.0/sobjects/EntitlementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + History","labelPlural":"Entitlement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementHistory/describe","sobject":"/services/data/v58.0/sobjects/EntitlementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"551","label":"Entitlement + Template","labelPlural":"Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/EntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ie","label":"Entity + Definition","labelPlural":"Entity Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityDefinition/{ID}","describe":"/services/data/v58.0/sobjects/EntityDefinition/describe","sobject":"/services/data/v58.0/sobjects/EntityDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1EM","label":"Object + Milestone","labelPlural":"Object Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntityMilestone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntityMilestone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EntityMilestone/describe","quickActions":"/services/data/v58.0/sobjects/EntityMilestone/quickActions","layouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntityMilestone"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone Feed","labelPlural":"Object Milestone Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneFeed/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone History","labelPlural":"Object Milestone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneHistory/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nv","label":"Entity + Particle","labelPlural":"Entity Particles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityParticle","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityParticle/{ID}","describe":"/services/data/v58.0/sobjects/EntityParticle/describe","sobject":"/services/data/v58.0/sobjects/EntityParticle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E8","label":"Entity + Subscription","labelPlural":"Entity Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitySubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitySubscription/{ID}","describe":"/services/data/v58.0/sobjects/EntitySubscription/describe","sobject":"/services/data/v58.0/sobjects/EntitySubscription"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Error_Log__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Log","labelPlural":"Change Event: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Error_Log__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Error Log","labelPlural":"Share: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__Share/{ID}","describe":"/services/data/v58.0/sobjects/Error_Log__Share/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1M","label":"Error + Log","labelPlural":"Connection Error Log","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Error_Log__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Error_Log__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Error_Log__c/describe","quickActions":"/services/data/v58.0/sobjects/Error_Log__c/quickActions","layouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Error_Log__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00U","label":"Event","labelPlural":"Events","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Event","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Event/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Event/{ID}","eventSeriesUpdates":"/services/data/v58.0/sobjects/Event/{ID}/fromThisEventOnwards","describe":"/services/data/v58.0/sobjects/Event/describe","quickActions":"/services/data/v58.0/sobjects/Event/quickActions","layouts":"/services/data/v58.0/sobjects/Event/describe/layouts","sobject":"/services/data/v58.0/sobjects/Event"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cd","label":"Platform + Event Subscription","labelPlural":"Platform Event Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventBusSubscriber","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventBusSubscriber/{ID}","describe":"/services/data/v58.0/sobjects/EventBusSubscriber/describe","sobject":"/services/data/v58.0/sobjects/EventBusSubscriber"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Change Event","labelPlural":"Event Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Feed","labelPlural":"Event Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventFeed/{ID}","describe":"/services/data/v58.0/sobjects/EventFeed/describe","sobject":"/services/data/v58.0/sobjects/EventFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AT","label":"Event + Log File","labelPlural":"Event Log Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventLogFile","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventLogFile/{ID}","describe":"/services/data/v58.0/sobjects/EventLogFile/describe","sobject":"/services/data/v58.0/sobjects/EventLogFile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0RE","label":"Event + Relation","labelPlural":"Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelation/{ID}","describe":"/services/data/v58.0/sobjects/EventRelation/describe","sobject":"/services/data/v58.0/sobjects/EventRelation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relation Change Event","labelPlural":"Event Relation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k2","label":"Event + Relay Config","labelPlural":"Event Relay Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfig/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayConfig/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfig"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelayConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relay Config Change Event","labelPlural":"Event Relay Config Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfigChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k4","label":"Event + Relay Feedback","labelPlural":"Event Relay Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayFeedback/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayFeedback/describe","sobject":"/services/data/v58.0/sobjects/EventRelayFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1V4","label":"Expense","labelPlural":"Expenses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Expense","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Expense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Expense/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Expense/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Expense/describe","quickActions":"/services/data/v58.0/sobjects/Expense/quickActions","layouts":"/services/data/v58.0/sobjects/Expense/describe/layouts","sobject":"/services/data/v58.0/sobjects/Expense"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Change Event","labelPlural":"Expense Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ExpenseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ExpenseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ExpenseChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Feed","labelPlural":"Expense Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + History","labelPlural":"Expense History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6g5","label":"Expense + Report","labelPlural":"Expense Reports","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReport/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExpenseReport/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReport/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReport"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3zl","label":"Expense + Report Entry","labelPlural":"Expense Report Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReportEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntry/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReportEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntry"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry Feed","labelPlural":"Expense Report Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry History","labelPlural":"Expense Report Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Feed","labelPlural":"Expense Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report History","labelPlural":"Expense Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExpenseReport","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Share","labelPlural":"Expense Report Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Expense","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Share","labelPlural":"Expense Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1GS","label":"ExpressionFilter","labelPlural":"ExpressionFilters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilter/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilter/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8BM","label":"ExpressionFilterCriteria","labelPlural":"ExpressionFilterCriteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilterCriteria"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pz","label":"Expression + Set View","labelPlural":"Expression Set Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionSetView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionSetView/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionSetView/describe","sobject":"/services/data/v58.0/sobjects/ExpressionSetView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XC","label":"External + Data Source","labelPlural":"External Data Sources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ExternalDataSource","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSource/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSource/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6Ay","label":"External + Data Source Descriptor","labelPlural":"External Data Source Descriptors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataSrcDescriptor","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XU","label":"External + Data User Authentication","labelPlural":"External Data User Authentications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataUserAuth","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataUserAuth/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataUserAuth/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataUserAuth"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AY","label":"External + Event","labelPlural":"External Events","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ExternalEvent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExternalEvent/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEvent/describe","layouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExternalEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08N","label":"External + Event Mapping","labelPlural":"External Event Mappings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMapping","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMapping/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExternalEventMapping/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExternalEventMapping/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMapping"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExternalEventMapping","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"External + Event Mapping Share","labelPlural":"External Event Mapping Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMappingShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMappingShare/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEventMappingShare/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMappingShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08M","label":"Feed + Attachment","labelPlural":"Feed Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedAttachment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/FeedAttachment/describe","sobject":"/services/data/v58.0/sobjects/FeedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D7","label":"Feed + Comment","labelPlural":"Feed Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedComment/{ID}","describe":"/services/data/v58.0/sobjects/FeedComment/describe","sobject":"/services/data/v58.0/sobjects/FeedComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D5","label":"Feed + Item","labelPlural":"Feed Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FeedItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedItem/{ID}","describe":"/services/data/v58.0/sobjects/FeedItem/describe","quickActions":"/services/data/v58.0/sobjects/FeedItem/quickActions","layouts":"/services/data/v58.0/sobjects/FeedItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FeedItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I0","label":"Feed + Like","labelPlural":"Feed Likes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedLike","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedLike/{ID}","describe":"/services/data/v58.0/sobjects/FeedLike/describe","sobject":"/services/data/v58.0/sobjects/FeedLike"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09A","label":"Feed + Poll Choice","labelPlural":"Feed Poll Choices","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollChoice","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollChoice/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollChoice/describe","sobject":"/services/data/v58.0/sobjects/FeedPollChoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09B","label":"Feed + Poll Vote","labelPlural":"Feed Poll Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollVote","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollVote/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollVote/describe","sobject":"/services/data/v58.0/sobjects/FeedPollVote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08U","label":"Feed + Revision","labelPlural":"Feed Revisions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedRevision","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedRevision/{ID}","describe":"/services/data/v58.0/sobjects/FeedRevision/describe","sobject":"/services/data/v58.0/sobjects/FeedRevision"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QJ","label":"Feed + Signal","labelPlural":"Feed Signals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedSignal","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedSignal/{ID}","describe":"/services/data/v58.0/sobjects/FeedSignal/describe","sobject":"/services/data/v58.0/sobjects/FeedSignal"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D6","label":"Feed + Tracked Change","labelPlural":"Feed Tracked Changes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedTrackedChange","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedTrackedChange/{ID}","describe":"/services/data/v58.0/sobjects/FeedTrackedChange/describe","sobject":"/services/data/v58.0/sobjects/FeedTrackedChange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fe","label":"Field + Definition","labelPlural":"Field Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldDefinition/{ID}","describe":"/services/data/v58.0/sobjects/FieldDefinition/describe","sobject":"/services/data/v58.0/sobjects/FieldDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01k","label":"Field + Permissions","labelPlural":"Field Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldPermissions/{ID}","describe":"/services/data/v58.0/sobjects/FieldPermissions/describe","sobject":"/services/data/v58.0/sobjects/FieldPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Security Classification","labelPlural":"Field Security Classifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldSecurityClassification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldSecurityClassification/{ID}","describe":"/services/data/v58.0/sobjects/FieldSecurityClassification/describe","sobject":"/services/data/v58.0/sobjects/FieldSecurityClassification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mf","label":"Field + Service Mobile Settings","labelPlural":"Field Service Mobile Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe","layouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/layouts","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettings"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FieldServiceMobileSettings","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Service Mobile Settings Change Event","labelPlural":"Field Service Mobile + Settings Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettingsChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UJ","label":"Field + Service Org Settings","labelPlural":"Field Service Org Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceOrgSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceOrgSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0vI","label":"File + Event","labelPlural":"File Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FileEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FileEvent/describe","sobject":"/services/data/v58.0/sobjects/FileEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0wg","label":"File + Event Store","labelPlural":"File Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEventStore/{ID}","describe":"/services/data/v58.0/sobjects/FileEventStore/describe","sobject":"/services/data/v58.0/sobjects/FileEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06h","label":"FileSearchActivity","labelPlural":"File + Search Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileSearchActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileSearchActivity/{ID}","describe":"/services/data/v58.0/sobjects/FileSearchActivity/describe","sobject":"/services/data/v58.0/sobjects/FileSearchActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2kA","label":"Finance + Balance Snapshot","labelPlural":"Finance Balance Snapshots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceBalanceSnapshot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe","quickActions":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceBalanceSnapshot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Change Event","labelPlural":"Finance Balance Snapshot Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceBalanceSnapshot","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Share","labelPlural":"Finance Balance Snapshot Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0n3","label":"Finance + Transaction","labelPlural":"Finance Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceTransaction/describe","quickActions":"/services/data/v58.0/sobjects/FinanceTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceTransaction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Change Event","labelPlural":"Finance Transaction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceTransaction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Share","labelPlural":"Finance Transaction Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceTransactionShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"022","label":"Fiscal + Year Settings","labelPlural":"Fiscal Year Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FiscalYearSettings","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FiscalYearSettings/{ID}","describe":"/services/data/v58.0/sobjects/FiscalYearSettings/describe","sobject":"/services/data/v58.0/sobjects/FiscalYearSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06i","label":"Flex + Queue Item","labelPlural":"Flex Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlexQueueItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlexQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/FlexQueueItem/describe","sobject":"/services/data/v58.0/sobjects/FlexQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3dd","label":"Flow + Definition","labelPlural":"Flow Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowDefinitionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowDefinitionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowDefinitionView/describe","sobject":"/services/data/v58.0/sobjects/FlowDefinitionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eC","label":"Flow + Execution Error Event","labelPlural":"Flow Execution Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowExecutionErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fo","label":"Flow + Interview","labelPlural":"Flow Interviews","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowInterview","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowInterview/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowInterview/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterview/describe","layouts":"/services/data/v58.0/sobjects/FlowInterview/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowInterview"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8gZ","label":"Flow + Interview Log","labelPlural":"Flow Interview Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLog/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLog/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f6","label":"Flow + Interview Log Entry","labelPlural":"Flow Interview Log Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogEntry"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterviewLog","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Log Share","labelPlural":"Flow Interview Log Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterview","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Share","labelPlural":"Flow Interview Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jo","label":"Orchestration + Event","labelPlural":"Orchestration Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jE","label":"Orchestration + Run","labelPlural":"Orchestration Runs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Run Share","labelPlural":"Orchestration Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jF","label":"Orchestration + Stage Run","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration + Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration + Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow + Record Relation","labelPlural":"Flow Record Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowRecordRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowRecordRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowRecordRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowRecordRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31y","label":"Flow + Interview Stage Relation","labelPlural":"Flow Interview Stage Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowStageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowStageRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowStageRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowStageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2hU","label":"Flow + Test Result","labelPlural":"Flow Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResult/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResult/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResult"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowTestResult","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Test Result Share","labelPlural":"Flow Test Result Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResultShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResultShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResultShare/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResultShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YB","label":"Flow + Test View","labelPlural":"Flow Test Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestView/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestView/describe","sobject":"/services/data/v58.0/sobjects/FlowTestView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3ad","label":"Flow + Variable","labelPlural":"Flow Variables","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVariableView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVariableView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVariableView/describe","sobject":"/services/data/v58.0/sobjects/FlowVariableView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3vd","label":"Flow + Version","labelPlural":"Flow Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVersionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVersionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVersionView/describe","sobject":"/services/data/v58.0/sobjects/FlowVersionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00l","label":"Folder","labelPlural":"Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Folder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Folder/{ID}","describe":"/services/data/v58.0/sobjects/Folder/describe","sobject":"/services/data/v58.0/sobjects/Folder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Foldered + Content Document","labelPlural":"Foldered Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FolderedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FolderedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/FolderedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/FolderedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kn","label":"Formula + Function","labelPlural":"Formula Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunction/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunction/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fE","label":"Formula + Context Function","labelPlural":"Formula Context Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionAllowedType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kh","label":"Formula + Function Category","labelPlural":"Formula Function Categories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionCategory","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionCategory/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionCategory/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionCategory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06d","label":"Setting + Granted By License","labelPlural":"Settings Granted By Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GrantedByLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GrantedByLicense/{ID}","describe":"/services/data/v58.0/sobjects/GrantedByLicense/describe","sobject":"/services/data/v58.0/sobjects/GrantedByLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00G","label":"Group","labelPlural":"Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Group","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Group/{ID}","describe":"/services/data/v58.0/sobjects/Group/describe","sobject":"/services/data/v58.0/sobjects/Group"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"011","label":"Group + Member","labelPlural":"Group Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GroupMember/{ID}","describe":"/services/data/v58.0/sobjects/GroupMember/describe","sobject":"/services/data/v58.0/sobjects/GroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1gp","label":"Gateway + Provider Payment Method Type","labelPlural":"Gateway Provider Payment Method + Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"GtwyProvPaymentMethodType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/{ID}","describe":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/describe","sobject":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C0","label":"Holiday","labelPlural":"Holidays","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Holiday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Holiday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Holiday/{ID}","describe":"/services/data/v58.0/sobjects/Holiday/describe","layouts":"/services/data/v58.0/sobjects/Holiday/describe/layouts","sobject":"/services/data/v58.0/sobjects/Holiday"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9s4","label":"IP + Address Range","labelPlural":"IP Address Ranges","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"IPAddressRange","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/IPAddressRange/{ID}","describe":"/services/data/v58.0/sobjects/IPAddressRange/describe","layouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/layouts","sobject":"/services/data/v58.0/sobjects/IPAddressRange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09k","label":"Icon + Definition","labelPlural":"Icon Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IconDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IconDefinition/{ID}","describe":"/services/data/v58.0/sobjects/IconDefinition/describe","sobject":"/services/data/v58.0/sobjects/IconDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"087","label":"Idea","labelPlural":"Ideas","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Idea","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Idea/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Idea/{ID}","describe":"/services/data/v58.0/sobjects/Idea/describe","layouts":"/services/data/v58.0/sobjects/Idea/describe/layouts","sobject":"/services/data/v58.0/sobjects/Idea"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Idea","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Idea + Comment","labelPlural":"Idea Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdeaComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdeaComment/{ID}","describe":"/services/data/v58.0/sobjects/IdeaComment/describe","sobject":"/services/data/v58.0/sobjects/IdeaComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0k8","label":"Identity + Provider Event Store","labelPlural":"Identity Provider Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityProviderEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityProviderEventStore/{ID}","describe":"/services/data/v58.0/sobjects/IdentityProviderEventStore/describe","sobject":"/services/data/v58.0/sobjects/IdentityProviderEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jx","label":"Identity + Verification Event","labelPlural":"Identity Verification Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityVerificationEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityVerificationEvent/{ID}","describe":"/services/data/v58.0/sobjects/IdentityVerificationEvent/describe","sobject":"/services/data/v58.0/sobjects/IdentityVerificationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yu","label":"Identity + Provider Event Log","labelPlural":"Identity Event Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdpEventLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdpEventLog/{ID}","describe":"/services/data/v58.0/sobjects/IdpEventLog/describe","sobject":"/services/data/v58.0/sobjects/IdpEventLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6TS","label":"Trusted + Domain for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/IframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/IframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YL","label":"Image","labelPlural":"Images","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Image","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Image/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Image/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Image/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Image/describe","quickActions":"/services/data/v58.0/sobjects/Image/quickActions","layouts":"/services/data/v58.0/sobjects/Image/describe/layouts","sobject":"/services/data/v58.0/sobjects/Image"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Feed","labelPlural":"Image Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ImageFeed/describe","sobject":"/services/data/v58.0/sobjects/ImageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + History","labelPlural":"Image History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ImageHistory/describe","sobject":"/services/data/v58.0/sobjects/ImageHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Image","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Share","labelPlural":"Image Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageShare/{ID}","describe":"/services/data/v58.0/sobjects/ImageShare/describe","sobject":"/services/data/v58.0/sobjects/ImageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PK","label":"Individual","labelPlural":"Individuals","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Individual","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Individual/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Individual/{ID}","describe":"/services/data/v58.0/sobjects/Individual/describe","quickActions":"/services/data/v58.0/sobjects/Individual/quickActions","layouts":"/services/data/v58.0/sobjects/Individual/describe/layouts","sobject":"/services/data/v58.0/sobjects/Individual"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + Change Event","labelPlural":"Individual Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/IndividualChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/IndividualChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/IndividualChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + History","labelPlural":"Individual History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualHistory/{ID}","describe":"/services/data/v58.0/sobjects/IndividualHistory/describe","sobject":"/services/data/v58.0/sobjects/IndividualHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Individual","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T5","label":"Individual + Share","labelPlural":"Individual Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualShare/{ID}","describe":"/services/data/v58.0/sobjects/IndividualShare/describe","sobject":"/services/data/v58.0/sobjects/IndividualShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0El","label":"Installed + Mobile App","labelPlural":"Installed Mobile Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InstalledMobileApp","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InstalledMobileApp/{ID}","describe":"/services/data/v58.0/sobjects/InstalledMobileApp/describe","sobject":"/services/data/v58.0/sobjects/InstalledMobileApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3tt","label":"Invoice","labelPlural":"Invoices","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Invoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Invoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Invoice/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Invoice/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Invoice/describe","quickActions":"/services/data/v58.0/sobjects/Invoice/quickActions","layouts":"/services/data/v58.0/sobjects/Invoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/Invoice"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Feed","labelPlural":"Invoice Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice History","labelPlural":"Invoice History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5TV","label":"Invoice + Line","labelPlural":"Invoice Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"InvoiceLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/InvoiceLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/InvoiceLine/describe","quickActions":"/services/data/v58.0/sobjects/InvoiceLine/quickActions","layouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/InvoiceLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line Feed","labelPlural":"Invoice Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line History","labelPlural":"Invoice Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Invoice","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Share","labelPlural":"Invoice Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceShare/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceShare/describe","sobject":"/services/data/v58.0/sobjects/InvoiceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jp","label":"Job + Profile","labelPlural":"Job Profiles","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"JobProfile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/JobProfile/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/JobProfile/describe","quickActions":"/services/data/v58.0/sobjects/JobProfile/quickActions","layouts":"/services/data/v58.0/sobjects/JobProfile/describe/layouts","sobject":"/services/data/v58.0/sobjects/JobProfile"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Feed","labelPlural":"Job Profile Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileFeed/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileFeed/describe","sobject":"/services/data/v58.0/sobjects/JobProfileFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile History","labelPlural":"Job Profile History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileHistory/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileHistory/describe","sobject":"/services/data/v58.0/sobjects/JobProfileHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"JobProfile","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Share","labelPlural":"Job Profile Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileShare/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileShare/describe","sobject":"/services/data/v58.0/sobjects/JobProfileShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0in","label":"Knowledgeable + User","labelPlural":"Knowledgeable Users","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"KnowledgeableUser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/KnowledgeableUser/{ID}","describe":"/services/data/v58.0/sobjects/KnowledgeableUser/describe","sobject":"/services/data/v58.0/sobjects/KnowledgeableUser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00Q","label":"Lead","labelPlural":"Leads","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Lead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Lead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Lead/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Lead/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Lead/listviews","describe":"/services/data/v58.0/sobjects/Lead/describe","quickActions":"/services/data/v58.0/sobjects/Lead/quickActions","layouts":"/services/data/v58.0/sobjects/Lead/describe/layouts","sobject":"/services/data/v58.0/sobjects/Lead"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Change Event","labelPlural":"Lead Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LeadChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LeadChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LeadChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CL","label":"Lead + Clean Info","labelPlural":"Lead Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/LeadCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/LeadCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Feed","labelPlural":"Lead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadFeed/{ID}","describe":"/services/data/v58.0/sobjects/LeadFeed/describe","sobject":"/services/data/v58.0/sobjects/LeadFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + History","labelPlural":"Lead History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadHistory/{ID}","describe":"/services/data/v58.0/sobjects/LeadHistory/describe","sobject":"/services/data/v58.0/sobjects/LeadHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Lead","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01o","label":"Lead + Share","labelPlural":"Lead Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadShare/{ID}","describe":"/services/data/v58.0/sobjects/LeadShare/describe","sobject":"/services/data/v58.0/sobjects/LeadShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Lead + Status Value","labelPlural":"Lead Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadStatus/{ID}","describe":"/services/data/v58.0/sobjects/LeadStatus/describe","sobject":"/services/data/v58.0/sobjects/LeadStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fw","label":"Legal + Entity","labelPlural":"Legal Entities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LegalEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LegalEntity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LegalEntity/describe","quickActions":"/services/data/v58.0/sobjects/LegalEntity/quickActions","layouts":"/services/data/v58.0/sobjects/LegalEntity/describe/layouts","sobject":"/services/data/v58.0/sobjects/LegalEntity"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityFeed/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityFeed/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity History","labelPlural":"Legal Entity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityHistory/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityHistory/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LegalEntity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity Share","labelPlural":"Legal Entity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityShare/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityShare/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0S1","label":"Lightning + Experience Theme","labelPlural":"Lightning Experience Themes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningExperienceTheme","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningExperienceTheme/{ID}","describe":"/services/data/v58.0/sobjects/LightningExperienceTheme/describe","sobject":"/services/data/v58.0/sobjects/LightningExperienceTheme"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7MM","label":"LightningOnboardingConfig","labelPlural":"LightningOnboardingConfigs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningOnboardingConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningOnboardingConfig/{ID}","describe":"/services/data/v58.0/sobjects/LightningOnboardingConfig/describe","sobject":"/services/data/v58.0/sobjects/LightningOnboardingConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bh","label":"Lightning + URI Event","labelPlural":"Lightning URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEvent/{ID}","describe":"/services/data/v58.0/sobjects/LightningUriEvent/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bi","label":"Lightning + URI Event Stream","labelPlural":"Lightning URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LightningUriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LightningUriEventStream/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XB","label":"List + Email","labelPlural":"List Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ListEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ListEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ListEmail/{ID}","describe":"/services/data/v58.0/sobjects/ListEmail/describe","layouts":"/services/data/v58.0/sobjects/ListEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ListEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ListEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Change Event","labelPlural":"List Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ListEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ListEmailChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XF","label":"List + Email Individual Recipient","labelPlural":"List Email Individual Recipients","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailIndividualRecipient","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/describe","sobject":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XD","label":"List + Email Recipient Source","labelPlural":"List Email Recipient Sources","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailRecipientSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailRecipientSource/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailRecipientSource/describe","sobject":"/services/data/v58.0/sobjects/ListEmailRecipientSource"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ListEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Share","labelPlural":"List Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ListEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00B","label":"List + View","labelPlural":"List Views","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListView/{ID}","describe":"/services/data/v58.0/sobjects/ListView/describe","sobject":"/services/data/v58.0/sobjects/ListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Dd","label":"List + View Chart","labelPlural":"List View Charts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChart","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChart/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChart/describe","sobject":"/services/data/v58.0/sobjects/ListViewChart"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0De","label":"List + View Chart Instance","labelPlural":"List View Chart Instances","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChartInstance","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChartInstance/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChartInstance/describe","sobject":"/services/data/v58.0/sobjects/ListViewChartInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0X8","label":"List + View Event","labelPlural":"List View Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEvent/{ID}","describe":"/services/data/v58.0/sobjects/ListViewEvent/describe","sobject":"/services/data/v58.0/sobjects/ListViewEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XG","label":"List + View Event Stream","labelPlural":"List View Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListViewEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ListViewEventStream/describe","sobject":"/services/data/v58.0/sobjects/ListViewEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"131","label":"Location","labelPlural":"Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Location","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Location/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Location/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Location/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Location/describe","quickActions":"/services/data/v58.0/sobjects/Location/quickActions","layouts":"/services/data/v58.0/sobjects/Location/describe/layouts","sobject":"/services/data/v58.0/sobjects/Location"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Change Event","labelPlural":"Location Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Feed","labelPlural":"Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gh","label":"Location + Group","labelPlural":"Location Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroup/describe","quickActions":"/services/data/v58.0/sobjects/LocationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/LocationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gx","label":"Location + Group Assignment","labelPlural":"Location Group Assignments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroupAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroupAssignment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe","layouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroupAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Feed","labelPlural":"Location Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group History","labelPlural":"Location Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LocationGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Share","labelPlural":"Location Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupShare/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + History","labelPlural":"Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Location","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Share","labelPlural":"Location Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationShare/describe","sobject":"/services/data/v58.0/sobjects/LocationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VX","label":"LoginAs + Event","labelPlural":"LoginAs Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginAsEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VY","label":"LoginAs + Event Stream","labelPlural":"LoginAs Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginAsEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginAsEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1HB","label":"Login + Event","labelPlural":"Login Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ll","label":"Login + Event Stream","labelPlural":"Login Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04F","label":"Login + Geo Data","labelPlural":"Login Geo Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginGeo","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginGeo/{ID}","describe":"/services/data/v58.0/sobjects/LoginGeo/describe","sobject":"/services/data/v58.0/sobjects/LoginGeo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ya","label":"Login + History","labelPlural":"Login History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginHistory/{ID}","describe":"/services/data/v58.0/sobjects/LoginHistory/describe","sobject":"/services/data/v58.0/sobjects/LoginHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"710","label":"Login + IP","labelPlural":"Login IP","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginIp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginIp/{ID}","describe":"/services/data/v58.0/sobjects/LoginIp/describe","sobject":"/services/data/v58.0/sobjects/LoginIp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06M","label":"Logout + Event","labelPlural":"Logout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEvent/{ID}","describe":"/services/data/v58.0/sobjects/LogoutEvent/describe","sobject":"/services/data/v58.0/sobjects/LogoutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PH","label":"Logout + Event Stream","labelPlural":"Logout Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LogoutEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LogoutEventStream/describe","sobject":"/services/data/v58.0/sobjects/LogoutEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lookups + from Activity","labelPlural":"Lookups from Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LookedUpFromActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LookedUpFromActivity/{ID}","describe":"/services/data/v58.0/sobjects/LookedUpFromActivity/describe","sobject":"/services/data/v58.0/sobjects/LookedUpFromActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"873","label":"ML + Model","labelPlural":"ML Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModel/describe","sobject":"/services/data/v58.0/sobjects/MLModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"876","label":"ML + Model Factor","labelPlural":"ML Model Factors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactor/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"877","label":"ML + Model Factor Component","labelPlural":"ML Model Factor Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactorComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactorComponent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactorComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"874","label":"ML + Model Metric","labelPlural":"ML Model Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelMetric/{ID}","describe":"/services/data/v58.0/sobjects/MLModelMetric/describe","sobject":"/services/data/v58.0/sobjects/MLModelMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6gt","label":"ML + Prediction Definition","labelPlural":"ML Prediction Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLPredictionDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLPredictionDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLPredictionDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLPredictionDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7gh","label":"ML + Recommendation Definition","labelPlural":"ML Recommendation Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLRecommendationDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLRecommendationDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLRecommendationDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLRecommendationDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JZ","label":"Macro","labelPlural":"Macros","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Macro","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Macro/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Macro/{ID}","describe":"/services/data/v58.0/sobjects/Macro/describe","layouts":"/services/data/v58.0/sobjects/Macro/describe/layouts","sobject":"/services/data/v58.0/sobjects/Macro"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Change Event","labelPlural":"Macro Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + History","labelPlural":"Macro History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroHistory/{ID}","describe":"/services/data/v58.0/sobjects/MacroHistory/describe","sobject":"/services/data/v58.0/sobjects/MacroHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ji","label":"Macro + Instruction","labelPlural":"Macro Instructions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstruction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstruction/{ID}","describe":"/services/data/v58.0/sobjects/MacroInstruction/describe","sobject":"/services/data/v58.0/sobjects/MacroInstruction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MacroInstruction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Instruction Change Event","labelPlural":"Macro Instruction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstructionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Macro","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Share","labelPlural":"Macro Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroShare/describe","sobject":"/services/data/v58.0/sobjects/MacroShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5ML","label":"Macro + Usage","labelPlural":"Macro Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MacroUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MacroUsage/describe","sobject":"/services/data/v58.0/sobjects/MacroUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MacroUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Usage Share","labelPlural":"Macro Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroUsageShare/describe","sobject":"/services/data/v58.0/sobjects/MacroUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01H","label":"Mail + Merge Template","labelPlural":"Mail Merge Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MailmergeTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MailmergeTemplate/{ID}","describe":"/services/data/v58.0/sobjects/MailmergeTemplate/describe","sobject":"/services/data/v58.0/sobjects/MailmergeTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MA","label":"Maintenance + Asset","labelPlural":"Maintenance Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceAsset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAsset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceAsset/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceAsset/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceAsset"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Change Event","labelPlural":"Maintenance Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Feed","labelPlural":"Maintenance Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset History","labelPlural":"Maintenance Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MP","label":"Maintenance + Plan","labelPlural":"Maintenance Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenancePlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenancePlan/describe","quickActions":"/services/data/v58.0/sobjects/MaintenancePlan/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenancePlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Change Event","labelPlural":"Maintenance Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Feed","labelPlural":"Maintenance Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan History","labelPlural":"Maintenance Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenancePlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Share","labelPlural":"Maintenance Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7fc","label":"Maintenance + Work Rule","labelPlural":"Maintenance Work Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceWorkRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceWorkRule/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Change Event","labelPlural":"Maintenance Work Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Feed","labelPlural":"Maintenance Work Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule History","labelPlural":"Maintenance Work Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenanceWorkRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Share","labelPlural":"Maintenance Work Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"20Y","label":"Managed + Content","labelPlural":"Managed Contents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContent/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContent/describe","layouts":"/services/data/v58.0/sobjects/ManagedContent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ap","label":"Managed + Content Channel","labelPlural":"Managed Content Channels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentChannel/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentChannel/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zu","label":"Managed + Content Space","labelPlural":"Managed Content Spaces","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ManagedContentSpace","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentSpace/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentSpace/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentSpace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Ps","label":"Managed + Content Variant","labelPlural":"Managed Content Variants","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariant","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariant/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentVariant/describe","layouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContentVariant"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ManagedContentVariant","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Managed + Content Variant Change Event","labelPlural":"Managed Content Variant Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching + Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching + Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My + Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named + Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note + and Attachment","labelPlural":"Notes and Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"NoteAndAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NoteAndAttachment/{ID}","describe":"/services/data/v58.0/sobjects/NoteAndAttachment/describe","sobject":"/services/data/v58.0/sobjects/NoteAndAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ud","label":"OAuth + Custom Scope","labelPlural":"OAuth Custom Scopes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScope","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScope/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScope/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScope"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ue","label":"OAuth + Custom Scope App ","labelPlural":"OAuth Custom Scope Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScopeApp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScopeApp/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScopeApp/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScopeApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CQ","label":"Oauth + Token","labelPlural":"Oauth Tokens","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthToken","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthToken/{ID}","describe":"/services/data/v58.0/sobjects/OauthToken/describe","sobject":"/services/data/v58.0/sobjects/OauthToken"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"110","label":"Object + Permissions","labelPlural":"Object Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ObjectPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ObjectPermissions/{ID}","describe":"/services/data/v58.0/sobjects/ObjectPermissions/describe","sobject":"/services/data/v58.0/sobjects/ObjectPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UG","label":"Onboarding + Metrics","labelPlural":"Onboarding Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OnboardingMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OnboardingMetrics/{ID}","describe":"/services/data/v58.0/sobjects/OnboardingMetrics/describe","sobject":"/services/data/v58.0/sobjects/OnboardingMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Open + Activity","labelPlural":"Open Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpenActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpenActivity/{ID}","describe":"/services/data/v58.0/sobjects/OpenActivity/describe","sobject":"/services/data/v58.0/sobjects/OpenActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OH","label":"Operating + Hours","labelPlural":"Operating Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHours/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHours/describe","quickActions":"/services/data/v58.0/sobjects/OperatingHours/quickActions","layouts":"/services/data/v58.0/sobjects/OperatingHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHours"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Change Event","labelPlural":"Operating Hours Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Feed","labelPlural":"Operating Hours Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jG","label":"Operating + Hours Holiday","labelPlural":"Operating Hours Holidays","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHoursHoliday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHoliday/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe","layouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHoursHoliday"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHoursHoliday","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Holiday Feed","labelPlural":"Operating Hours Holiday Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursHolidayFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"006","label":"Opportunity","labelPlural":"Opportunities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Opportunity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Opportunity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Opportunity/listviews","describe":"/services/data/v58.0/sobjects/Opportunity/describe","quickActions":"/services/data/v58.0/sobjects/Opportunity/quickActions","layouts":"/services/data/v58.0/sobjects/Opportunity/describe/layouts","sobject":"/services/data/v58.0/sobjects/Opportunity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Change Event","labelPlural":"Opportunity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00J","label":"Opportunity: + Competitor","labelPlural":"Opportunity: Competitor","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityCompetitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityCompetitor/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityCompetitor/describe","sobject":"/services/data/v58.0/sobjects/OpportunityCompetitor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00K","label":"Opportunity + Contact Role","labelPlural":"Opportunity Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRole/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityContactRole/describe","quickActions":"/services/data/v58.0/sobjects/OpportunityContactRole/quickActions","layouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OpportunityContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Contact Role Change Event","labelPlural":"Opportunity Contact Role Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Feed","labelPlural":"Opportunity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFeed/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFeed/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Field History","labelPlural":"Opportunity Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFieldHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"008","label":"Opportunity + History","labelPlural":"Opportunity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00k","label":"Opportunity + Product","labelPlural":"Opportunity Product","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OpportunityLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityLineItem/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityLineItem/describe","layouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityLineItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Opportunity + Partner","labelPlural":"Opportunity Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityPartner/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityPartner/describe","layouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Opportunity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00t","label":"Opportunity + Share","labelPlural":"Opportunity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityShare/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityShare/describe","sobject":"/services/data/v58.0/sobjects/OpportunityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Opportunity + Stage","labelPlural":"Opportunity Stage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityStage","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityStage/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityStage/describe","sobject":"/services/data/v58.0/sobjects/OpportunityStage"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"801","label":"Order","labelPlural":"Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Order","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order/describe","quickActions":"/services/data/v58.0/sobjects/Order/quickActions","layouts":"/services/data/v58.0/sobjects/Order/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Change Event","labelPlural":"Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Feed","labelPlural":"Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + History","labelPlural":"Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"802","label":"Order + Product","labelPlural":"Order Products","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OrderItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OrderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OrderItem/{ID}","describe":"/services/data/v58.0/sobjects/OrderItem/describe","layouts":"/services/data/v58.0/sobjects/OrderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OrderItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Change Event","labelPlural":"Order Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Feed","labelPlural":"Order Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product History","labelPlural":"Order Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fy","label":"Order + Share","labelPlural":"Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderShare/{ID}","describe":"/services/data/v58.0/sobjects/OrderShare/describe","sobject":"/services/data/v58.0/sobjects/OrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Status Value","labelPlural":"Order Status Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/OrderStatus/describe","sobject":"/services/data/v58.0/sobjects/OrderStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Stripe Coupon","labelPlural":"Change Event: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Stripe Coupon","labelPlural":"Share: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1N","label":"Order + Stripe Coupon","labelPlural":"Order Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D3","label":"Organization + Email Address Security","labelPlural":"Organization Email Address Security","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgEmailAddressSecurity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/{ID}","describe":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/describe","sobject":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OL","label":"Org + Lifecycle Notification","labelPlural":"Org Lifecycle Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgLifecycleNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgLifecycleNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrgLifecycleNotification/eventSchema","describe":"/services/data/v58.0/sobjects/OrgLifecycleNotification/describe","sobject":"/services/data/v58.0/sobjects/OrgLifecycleNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3v1","label":"Org + Metric","labelPlural":"Org Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetric/{ID}","describe":"/services/data/v58.0/sobjects/OrgMetric/describe","sobject":"/services/data/v58.0/sobjects/OrgMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9aM","label":"Org + Metric Scan Result","labelPlural":"Org Metric Scan Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanResult/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6mX","label":"Org + Metric Scan Summary","labelPlural":"Org Metric Scan Summaries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanSummary","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanSummary/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanSummary"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D2","label":"Organization-wide + From Email Address","labelPlural":"Organization-wide From Email Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgWideEmailAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgWideEmailAddress/{ID}","describe":"/services/data/v58.0/sobjects/OrgWideEmailAddress/describe","sobject":"/services/data/v58.0/sobjects/OrgWideEmailAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00D","label":"Organization","labelPlural":"Organizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization/{ID}","describe":"/services/data/v58.0/sobjects/Organization/describe","sobject":"/services/data/v58.0/sobjects/Organization"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Organization_Type__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Organization Type","labelPlural":"Change Event: Organization Type","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1O","label":"Organization + Type","labelPlural":"Organization Type","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__c/{ID}","describe":"/services/data/v58.0/sobjects/Organization_Type__c/describe","quickActions":"/services/data/v58.0/sobjects/Organization_Type__c/quickActions","layouts":"/services/data/v58.0/sobjects/Organization_Type__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Organization_Type__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q1","label":"Outgoing + Email","labelPlural":"Outgoing Emails","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmail/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmail/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q3","label":"Outgoing + Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change + Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party + Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Feed","labelPlural":"Party Consent Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent History","labelPlural":"Party Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PartyConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Share","labelPlural":"Party Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentShare/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0aQ","label":"Payment","labelPlural":"Payments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Payment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Payment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Payment/{ID}","describe":"/services/data/v58.0/sobjects/Payment/describe","quickActions":"/services/data/v58.0/sobjects/Payment/quickActions","layouts":"/services/data/v58.0/sobjects/Payment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Payment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9tv","label":"Payment + Authorization Adjustment","labelPlural":"Payment Authorization Adjustments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthAdjustment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthAdjustment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xc","label":"Payment + Authorization","labelPlural":"Payment Authorizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthorization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthorization/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthorization/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthorization/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthorization"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Payment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PaymentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PaymentFeed/describe","sobject":"/services/data/v58.0/sobjects/PaymentFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0b0","label":"Payment + Gateway","labelPlural":"Payment Gateways","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGateway","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGateway/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGateway/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGateway/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGateway"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xt","label":"Payment + Gateway Log","labelPlural":"Payment Gateway Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayLog/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGatewayLog/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cJ","label":"Payment + Gateway Provider","labelPlural":"Payment Gateway Providers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayProvider/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe","layouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9zx","label":"Payment + Group","labelPlural":"Payment Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGroup/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGroup/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGroup/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1PL","label":"Payment + Line Invoice","labelPlural":"Payment Line Invoices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentLineInvoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentLineInvoice/{ID}","describe":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe","quickActions":"/services/data/v58.0/sobjects/PaymentLineInvoice/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentLineInvoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":true,"isSubtype":false,"keyPrefix":"0aa","label":"Payment + Method","labelPlural":"Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentMethod","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/PaymentMethod/describe","layouts":"/services/data/v58.0/sobjects/PaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"026","label":"Period","labelPlural":"Period","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Period","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Period/{ID}","describe":"/services/data/v58.0/sobjects/Period/describe","sobject":"/services/data/v58.0/sobjects/Period"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PS","label":"Permission + Set","labelPlural":"Permission Sets","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSet/describe","sobject":"/services/data/v58.0/sobjects/PermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pa","label":"Permission + Set Assignment","labelPlural":"Permission Set Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetAssignment/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetAssignment/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f3","label":"Permission + Set Event","labelPlural":"Permission Set Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PermissionSetEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PermissionSetEvent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f9","label":"Permission + Set Event Store ","labelPlural":"Permission Set Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEventStore/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetEventStore/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PG","label":"Permission + Set Group","labelPlural":"Permission Set Groups","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSetGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroup/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroup/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PM","label":"Permission + Set Group Component","labelPlural":"Permission Set Group Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetGroupComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroupComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PL","label":"Permission + Set License","labelPlural":"Permission Set Licenses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicense/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicense/describe","layouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/layouts","sobject":"/services/data/v58.0/sobjects/PermissionSetLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2LA","label":"Permission + Set License Assignment","labelPlural":"Permission Set License Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicenseAssign","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01P","label":"Permission + Set Tab Setting","labelPlural":"Permission Set Tab Setting","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetTabSetting","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetTabSetting/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetTabSetting/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetTabSetting"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pv","label":"Picklist + Value Info","labelPlural":"Picklist Value Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PicklistValueInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PicklistValueInfo/{ID}","describe":"/services/data/v58.0/sobjects/PicklistValueInfo/describe","sobject":"/services/data/v58.0/sobjects/PicklistValueInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JV","label":"Platform + Action","labelPlural":"Platform Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformAction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformAction/{ID}","describe":"/services/data/v58.0/sobjects/PlatformAction/describe","sobject":"/services/data/v58.0/sobjects/PlatformAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Er","label":"Platform + Cache Partition","labelPlural":"Platform Cache Partitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartition/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartition/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ev","label":"Platform + Cache Partition Type","labelPlural":"Platform Cache Partition Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartitionType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartitionType/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartitionType/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartitionType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Kk","label":"Platform + Event Usage Metric","labelPlural":"Platform Event Usage Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformEventUsageMetric","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/{ID}","describe":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/describe","sobject":"/services/data/v58.0/sobjects/PlatformEventUsageMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0V2","label":"Platform + Status Alert Event","labelPlural":"Platform Status Alert Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformStatusAlertEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/describe","sobject":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01s","label":"Price + Book","labelPlural":"Price Books","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Pricebook2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Pricebook2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Pricebook2/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2/describe","layouts":"/services/data/v58.0/sobjects/Pricebook2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Pricebook2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Change Event","labelPlural":"Price Book Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book History","labelPlural":"Price Book History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2History/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2History/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01u","label":"Price + Book Entry","labelPlural":"Price Book Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PricebookEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PricebookEntry/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntry/describe","layouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/PricebookEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry Change Event","labelPlural":"Price Book Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry History","labelPlural":"Price Book Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04a","label":"Process + Definition","labelPlural":"Process Definition","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ProcessDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ProcessDefinition/describe","sobject":"/services/data/v58.0/sobjects/ProcessDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Pe","label":"Process + Exception","labelPlural":"Process Exceptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProcessException","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProcessException/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProcessException/describe","quickActions":"/services/data/v58.0/sobjects/ProcessException/quickActions","layouts":"/services/data/v58.0/sobjects/ProcessException/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProcessException"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4v2","label":"Process + Exception Event","labelPlural":"Process Exception Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProcessExceptionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProcessExceptionEvent/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProcessException","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Exception Share","labelPlural":"Process Exception Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionShare/{ID}","describe":"/services/data/v58.0/sobjects/ProcessExceptionShare/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"11Q","label":"Process + Flow Migration","labelPlural":"Process Flow Migration Objects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessFlowMigration","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessFlowMigration/{ID}","describe":"/services/data/v58.0/sobjects/ProcessFlowMigration/describe","sobject":"/services/data/v58.0/sobjects/ProcessFlowMigration"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04g","label":"Process + Instance","labelPlural":"Process Instance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstance","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstance/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstance/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Instance History","labelPlural":"Process Instance History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceHistory/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OO","label":"Process + Instance Node","labelPlural":"Process Instance Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04h","label":"Process + Instance Step","labelPlural":"Process Instance Step","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceStep","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceStep/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceStep/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04i","label":"Approval + Request","labelPlural":"Approval Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceWorkitem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04b","label":"Process + Node","labelPlural":"Process Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessNode","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01t","label":"Product","labelPlural":"Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Product2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Product2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Product2/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Product2/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Product2/describe","quickActions":"/services/data/v58.0/sobjects/Product2/quickActions","layouts":"/services/data/v58.0/sobjects/Product2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Product2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Change Event","labelPlural":"Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Product2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Product2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Product2ChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Feed","labelPlural":"Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2Feed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2Feed/{ID}","describe":"/services/data/v58.0/sobjects/Product2Feed/describe","sobject":"/services/data/v58.0/sobjects/Product2Feed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + History","labelPlural":"Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2History/{ID}","describe":"/services/data/v58.0/sobjects/Product2History/describe","sobject":"/services/data/v58.0/sobjects/Product2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gv","label":"Product + Consumed","labelPlural":"Products Consumed","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductConsumed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumed/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumed/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumed/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumed"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Change Event","labelPlural":"Product Consumed Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Feed","labelPlural":"Product Consumed Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed History","labelPlural":"Product Consumed History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pY","label":"Product + Consumed State","labelPlural":"Product Consumed States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumedState/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumedState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumedState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumedState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed State History","labelPlural":"Product Consumed State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mq","label":"Product + Consumption Schedule","labelPlural":"Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe","layouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumptionSchedule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E9","label":"Product + Entitlement Template","labelPlural":"Product Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductEntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/ProductEntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Co","label":"Product + Item","labelPlural":"Product Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Change Event","labelPlural":"Product Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Feed","labelPlural":"Product Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item History","labelPlural":"Product Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Share","labelPlural":"Product Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemShare/describe","sobject":"/services/data/v58.0/sobjects/ProductItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TR","label":"Product + Item Transaction","labelPlural":"Product Item Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItemTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItemTransaction/describe","quickActions":"/services/data/v58.0/sobjects/ProductItemTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItemTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction Feed","labelPlural":"Product Item Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction History","labelPlural":"Product Item Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TS","label":"Product + Request","labelPlural":"Product Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequest/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequest/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequest"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Change Event","labelPlural":"Product Request Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Feed","labelPlural":"Product Request Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request History ","labelPlural":"Product Request History ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tw","label":"Product + Request Line Item","labelPlural":"Product Request Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequestLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequestLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Change Event","labelPlural":"Product Request Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Feed","labelPlural":"Product Request Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item History ","labelPlural":"Product Request Line Item History + ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Share","labelPlural":"Product Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gn","label":"Product + Required","labelPlural":"Products Required","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequired","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequired/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequired/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequired/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequired/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequired"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Change Event","labelPlural":"Product Required Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Feed","labelPlural":"Product Required Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required History","labelPlural":"Product Required History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iR","label":"Product + Service Campaign","labelPlural":"Product Service Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaign/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaign"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Feed","labelPlural":"Product Service Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign History","labelPlural":"Product Service Campaign History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"23N","label":"Product + Service Campaign Item","labelPlural":"Product Service Campaign Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaignItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Feed","labelPlural":"Product Service Campaign Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item History","labelPlural":"Product Service Campaign Item + History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Status","labelPlural":"Product Service Campaign Item + Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductServiceCampaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Share","labelPlural":"Product Service Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Status","labelPlural":"Product Service Campaign Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lu","label":"Product + Transfer","labelPlural":"Product Transfers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductTransfer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransfer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransfer/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransfer/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransfer"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Change Event","labelPlural":"Product Transfer Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Feed","labelPlural":"Product Transfer Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer History","labelPlural":"Product Transfer History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductTransfer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Share","labelPlural":"Product Transfer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferShare/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0nw","label":"Product + Transfer State","labelPlural":"Product Transfer States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductTransferState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransferState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransferState/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransferState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransferState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransferState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer State History","labelPlural":"Product Transfer State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Uj","label":"Product + Warranty Term","labelPlural":"Product Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductWarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTerm/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/ProductWarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTerm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term Feed","labelPlural":"Product Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term History","labelPlural":"Product Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00e","label":"Profile","labelPlural":"Profile","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Profile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Profile/{ID}","describe":"/services/data/v58.0/sobjects/Profile/describe","sobject":"/services/data/v58.0/sobjects/Profile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sk","label":"Skill","labelPlural":"Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProfileSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkill/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkill/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkill"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SE","label":"Endorsement","labelPlural":"Endorsements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsement"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + Feed","labelPlural":"Endorsement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + History","labelPlural":"Endorsement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Feed","labelPlural":"Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + History","labelPlural":"Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProfileSkill","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Share","labelPlural":"Skill Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillShare/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillShare/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SM","label":"Skill + User","labelPlural":"Skill Users","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillUser/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillUser/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillUser"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User Feed","labelPlural":"Skill User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User History","labelPlural":"Skill User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bs","label":"Prompt","labelPlural":"Prompts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Prompt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Prompt/{ID}","describe":"/services/data/v58.0/sobjects/Prompt/describe","sobject":"/services/data/v58.0/sobjects/Prompt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bu","label":"Prompt + Action","labelPlural":"Prompt Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptAction/describe","sobject":"/services/data/v58.0/sobjects/PromptAction"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptAction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Action Share","labelPlural":"Prompt Action Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptActionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptActionShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptActionShare/describe","sobject":"/services/data/v58.0/sobjects/PromptActionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4Dr","label":"Prompt + Error","labelPlural":"Prompt Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptError","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptError/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptError/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptError/describe","sobject":"/services/data/v58.0/sobjects/PromptError"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptError","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Error Share","labelPlural":"Prompt Error Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptErrorShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptErrorShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptErrorShare/describe","sobject":"/services/data/v58.0/sobjects/PromptErrorShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bt","label":"Prompt + Version","labelPlural":"Prompt Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptVersion/{ID}","describe":"/services/data/v58.0/sobjects/PromptVersion/describe","sobject":"/services/data/v58.0/sobjects/PromptVersion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pb","label":"Publisher","labelPlural":"Publishers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Publisher","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Publisher/{ID}","describe":"/services/data/v58.0/sobjects/Publisher/describe","sobject":"/services/data/v58.0/sobjects/Publisher"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IF","label":"Push + Topic","labelPlural":"Push Topics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PushTopic","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PushTopic/{ID}","describe":"/services/data/v58.0/sobjects/PushTopic/describe","sobject":"/services/data/v58.0/sobjects/PushTopic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03g","label":"Queue + sObject","labelPlural":"Queue sObjects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QueueSobject","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QueueSobject/{ID}","describe":"/services/data/v58.0/sobjects/QueueSobject/describe","sobject":"/services/data/v58.0/sobjects/QueueSobject"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"574","label":"Quick + Text","labelPlural":"Quick Text","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"QuickText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/QuickText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/QuickText/{ID}","describe":"/services/data/v58.0/sobjects/QuickText/describe","layouts":"/services/data/v58.0/sobjects/QuickText/describe/layouts","sobject":"/services/data/v58.0/sobjects/QuickText"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Change Event","labelPlural":"Quick Text Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/QuickTextChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/QuickTextChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/QuickTextChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text History","labelPlural":"Quick Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextHistory/describe","sobject":"/services/data/v58.0/sobjects/QuickTextHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickText","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Share","labelPlural":"Quick Text Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5QL","label":"Quick + Text Usage","labelPlural":"Quick Text Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/QuickTextUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/QuickTextUsage/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickTextUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Usage Share","labelPlural":"Quick Text Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextUsageShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QR","label":"Quote + Template Rich Text Data","labelPlural":"Quote Template Rich Text Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuoteTemplateRichTextData","queryable":false,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/{ID}","describe":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/describe","sobject":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Line_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Stripe Coupon Association","labelPlural":"Change Event: + Quote Line Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1P","label":"Quote + Line Stripe Coupon Association","labelPlural":"Quote Line Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon Association","labelPlural":"Change Event: Quote + Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1Q","label":"Quote + Stripe Coupon Association","labelPlural":"Quote Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon","labelPlural":"Change Event: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Quote_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Stripe Coupon","labelPlural":"Share: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1R","label":"Quote + Stripe Coupon","labelPlural":"Quote Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recently + Viewed","labelPlural":"Recently Viewed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecentlyViewed","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecentlyViewed/{ID}","describe":"/services/data/v58.0/sobjects/RecentlyViewed/describe","sobject":"/services/data/v58.0/sobjects/RecentlyViewed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pr","label":"Recommendation","labelPlural":"Recommendations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Recommendation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Recommendation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Recommendation/{ID}","describe":"/services/data/v58.0/sobjects/Recommendation/describe","layouts":"/services/data/v58.0/sobjects/Recommendation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Recommendation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Recommendation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recommendation + Change Event","labelPlural":"Recommendation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecommendationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecommendationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecommendationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rr","label":"Recommendation + Response","labelPlural":"Recommendation Responses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationResponse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationResponse/{ID}","describe":"/services/data/v58.0/sobjects/RecommendationResponse/describe","sobject":"/services/data/v58.0/sobjects/RecommendationResponse"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rw","label":"RecordAction","labelPlural":"RecordActions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordAction/{ID}","describe":"/services/data/v58.0/sobjects/RecordAction/describe","sobject":"/services/data/v58.0/sobjects/RecordAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ub","label":"RecordActionHistory","labelPlural":"RecordActionHistories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordActionHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordActionHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordActionHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordActionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"012","label":"Record + Type","labelPlural":"Record Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"RecordType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordType/{ID}","describe":"/services/data/v58.0/sobjects/RecordType/describe","sobject":"/services/data/v58.0/sobjects/RecordType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hr","label":"Recordset + Filter Criteria","labelPlural":"Recordset Filter Criteria","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteria"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Change Event","labelPlural":"Recordset Filter Criteria Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria History","labelPlural":"Recordset Filter Criteria History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hK","label":"Recordset + Filter Criteria Rule","labelPlural":"Recordset Filter Criteria Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteriaRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteriaRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Rule Change Event","labelPlural":"Recordset Filter Criteria + Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"RecordsetFilterCriteria","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Share","labelPlural":"Recordset Filter Criteria Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0yH","label":"Recordset + Filter Criteria Monitor","labelPlural":"Recordset Filter Criteria Monitors","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFltrCritMonitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Change Event","labelPlural":"Recordset Filter Criteria + Monitor Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Feed","labelPlural":"Recordset Filter Criteria Monitor + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor History","labelPlural":"Recordset Filter Criteria + Monitor History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9V6","label":"Allow + URL for Redirects","labelPlural":"Allow URLs for Redirects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RedirectWhitelistUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/{ID}","describe":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/describe","sobject":"/services/data/v58.0/sobjects/RedirectWhitelistUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cb","label":"Refund","labelPlural":"Refunds","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Refund","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Refund/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Refund/{ID}","describe":"/services/data/v58.0/sobjects/Refund/describe","quickActions":"/services/data/v58.0/sobjects/Refund/quickActions","layouts":"/services/data/v58.0/sobjects/Refund/describe/layouts","sobject":"/services/data/v58.0/sobjects/Refund"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dR","label":"Refund + Line Payment","labelPlural":"Refund Line Payments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"RefundLinePayment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RefundLinePayment/{ID}","describe":"/services/data/v58.0/sobjects/RefundLinePayment/describe","quickActions":"/services/data/v58.0/sobjects/RefundLinePayment/quickActions","layouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/layouts","sobject":"/services/data/v58.0/sobjects/RefundLinePayment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rc","label":"Related + List Column Definition","labelPlural":"Related List Column Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListColumnDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListColumnDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rl","label":"Related + List Definition","labelPlural":"Related List Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jv","label":"Relationship + Domain","labelPlural":"Relationship Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipDomain","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipDomain/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipDomain/describe","sobject":"/services/data/v58.0/sobjects/RelationshipDomain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ju","label":"Relationship","labelPlural":"Relationships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipInfo/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipInfo/describe","sobject":"/services/data/v58.0/sobjects/RelationshipInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VA","label":"Remote + Key Callout Event","labelPlural":"Remote Key Callout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RemoteKeyCalloutEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/describe","sobject":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00O","label":"Report","labelPlural":"Reports","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Report","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Report/{ID}","listviews":"/services/data/v58.0/sobjects/Report/listviews","describe":"/services/data/v58.0/sobjects/Report/describe","sobject":"/services/data/v58.0/sobjects/Report"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yv","label":"Report + Anomaly Event","labelPlural":"Report Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReportAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Z7","label":"Report + Anomaly Event Store","labelPlural":"Report Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReportAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReportAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Anomaly Event Store Feed","labelPlural":"Report Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qu","label":"Report + Event","labelPlural":"Report Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEvent/{ID}","describe":"/services/data/v58.0/sobjects/ReportEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ol","label":"Report + Event Stream","labelPlural":"Report Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ReportEventStream/describe","sobject":"/services/data/v58.0/sobjects/ReportEventStream"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Report","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Feed","labelPlural":"Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hw","label":"Resource + Absence","labelPlural":"Resource Absences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourceAbsence","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsence/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourceAbsence/describe","quickActions":"/services/data/v58.0/sobjects/ResourceAbsence/quickActions","layouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourceAbsence"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Change Event","labelPlural":"Resource Absence Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Feed","labelPlural":"Resource Absence Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence History","labelPlural":"Resource Absence History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kz","label":"Resource + Preference","labelPlural":"Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourcePreference/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourcePreference/describe","layouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourcePreference"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Change Event","labelPlural":"Resource Preference Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Feed","labelPlural":"Resource Preference Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference History","labelPlural":"Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2oN","label":"Return + Order","labelPlural":"Return Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrder/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrder/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Change Event","labelPlural":"Return Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Feed","labelPlural":"Return Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order History","labelPlural":"Return Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sn","label":"Return + Order Line Item","labelPlural":"Return Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Change Event","labelPlural":"Return Order Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Feed","labelPlural":"Return Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item History","labelPlural":"Return Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ReturnOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Share","labelPlural":"Return Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderShare/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Set","labelPlural":"Change Event: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__AttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Attribute Set","labelPlural":"Share: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a00","label":"Attribute + Set","labelPlural":"Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__AttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Value","labelPlural":"Change Event: Attribute Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a01","label":"Attribute + Value","labelPlural":"Attribute Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__BlockPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Block Price","labelPlural":"Change Event: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__BlockPrice__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Block Price","labelPlural":"Share: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a02","label":"Block + Price","labelPlural":"Block Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ColumnMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Column Metadata","labelPlural":"Change Event: Column Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ColumnMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a04","label":"Column + Metadata","labelPlural":"Columns Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ColumnMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Attribute","labelPlural":"Change Event: Configuration + Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Configuration Attribute","labelPlural":"Share: Configuration Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a05","label":"Configuration + Attribute","labelPlural":"Configuration Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ConfigurationAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Rule","labelPlural":"Change Event: Configuration Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a06","label":"Configuration + Rule","labelPlural":"Configuration Rules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Contracted Price","labelPlural":"Change Event: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Contracted Price","labelPlural":"History: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a07","label":"Contracted + Price","labelPlural":"Contracted Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Cost__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Cost","labelPlural":"Change Event: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Cost__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Cost","labelPlural":"Share: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a08","label":"Cost","labelPlural":"Costs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Cost__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomActionCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action Condition","labelPlural":"Change Event: Custom Action + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a09","label":"Custom + Action Condition","labelPlural":"Custom Action Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action","labelPlural":"Change Event: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomAction__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Action","labelPlural":"Share: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0A","label":"Custom + Action","labelPlural":"Custom Actions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomScript__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Script","labelPlural":"Change Event: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomScript__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Script","labelPlural":"Share: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0C","label":"Custom + Script","labelPlural":"Custom Scripts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomScript__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Dimension__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Dimension","labelPlural":"Change Event: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Dimension__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Dimension","labelPlural":"Share: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0D","label":"Price + Dimension","labelPlural":"Price Dimensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountCategory__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Category","labelPlural":"Change Event: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountCategory__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Category","labelPlural":"Share: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0E","label":"Discount + Category","labelPlural":"Discount Categories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountCategory__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Schedule","labelPlural":"Change Event: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Schedule","labelPlural":"History: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Schedule","labelPlural":"Share: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0G","label":"Discount + Schedule","labelPlural":"Discount Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Tier","labelPlural":"Change Event: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Tier","labelPlural":"History: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0H","label":"Discount + Tier","labelPlural":"Discount Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ErrorCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Condition","labelPlural":"Change Event: Error Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0I","label":"Error + Condition","labelPlural":"Error Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteProduct__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Product","labelPlural":"Change Event: Favorite Product","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0J","label":"Favorite + Product","labelPlural":"Favorite Product","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteShare__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Share","labelPlural":"Change Event: Favorite Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0K","label":"Favorite + Share","labelPlural":"Favorite Shares","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Favorite__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite","labelPlural":"Change Event: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Favorite__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Favorite","labelPlural":"Share: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0L","label":"Favorite","labelPlural":"Favorites","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Favorite__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Field Metadata","labelPlural":"Change Event: Field Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0M","label":"Field + Metadata","labelPlural":"Field Metadata","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: FieldSet Metadata","labelPlural":"Change Event: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + FieldSet Metadata","labelPlural":"Share: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0N","label":"FieldSet + Metadata","labelPlural":"FieldSets Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__FieldSetMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Column","labelPlural":"Change Event: Import Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Q","label":"Import + Column","labelPlural":"Import Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportFormat__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Format","labelPlural":"Change Event: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ImportFormat__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Import Format","labelPlural":"Share: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0R","label":"Import + Format","labelPlural":"Import Formats","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ImportFormat__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Install Processor Log","labelPlural":"Change Event: Install Processor + Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Install Processor Log","labelPlural":"Share: Install Processor Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0S","label":"Install + Processor Log","labelPlural":"Install Processor Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__InstallProcessorLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LineColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Line Column","labelPlural":"Change Event: Line Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0T","label":"Line + Column","labelPlural":"Line Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Localization__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Localization","labelPlural":"Change Event: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Localization__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Localization","labelPlural":"Share: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0U","label":"Localization","labelPlural":"Localizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Localization__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Localization__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupData__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Data","labelPlural":"Change Event: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupData__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Data","labelPlural":"Share: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0V","label":"Lookup + Data","labelPlural":"Lookup Data","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupQuery__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Query","labelPlural":"Change Event: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupQuery__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Query","labelPlural":"Share: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0W","label":"Lookup + Query","labelPlural":"Lookup Queries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OptionConstraint__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Option Constraint","labelPlural":"Change Event: Option Constraint","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0X","label":"Option + Constraint","labelPlural":"Option Constraints","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Rate","labelPlural":"Change Event: Order + Product Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Y","label":"Order + Product Consumption Rate","labelPlural":"Order Product Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Schedule","labelPlural":"Change Event: Order + Product Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Product Consumption Schedule","labelPlural":"Share: Order Product Consumption + Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Z","label":"Order + Product Consumption Schedule","labelPlural":"Order Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Action","labelPlural":"Change Event: Price Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0a","label":"Price + Action","labelPlural":"Price Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Condition","labelPlural":"Change Event: Price Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0b","label":"Price + Condition","labelPlural":"Price Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Rule","labelPlural":"Change Event: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Rule","labelPlural":"Share: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0c","label":"Price + Rule","labelPlural":"Price Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PriceRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Schedule","labelPlural":"Change Event: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Schedule","labelPlural":"History: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Schedule","labelPlural":"Share: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0d","label":"Price + Schedule","labelPlural":"Price Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Tier","labelPlural":"Change Event: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Tier","labelPlural":"History: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0e","label":"Price + Tier","labelPlural":"Price Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance Tier","labelPlural":"Change Event: Pricing Guidance + Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance Tier","labelPlural":"History: Pricing Guidance Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0f","label":"Pricing + Guidance Tier","labelPlural":"Pricing Guidance Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance","labelPlural":"Change Event: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance","labelPlural":"History: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PricingGuidance__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Pricing Guidance","labelPlural":"Share: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0g","label":"Pricing + Guidance","labelPlural":"Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Condition","labelPlural":"Change Event: Process Input + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0h","label":"Process + Input Condition","labelPlural":"Process Input Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Values","labelPlural":"Change Event: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Process Input Values","labelPlural":"Share: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0i","label":"Process + Input Values","labelPlural":"Process Input Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInput__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input","labelPlural":"Change Event: Process Input","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0j","label":"Process + Input","labelPlural":"Process Inputs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Action","labelPlural":"Change Event: Product Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0k","label":"Product + Action","labelPlural":"Product Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Attribute Set","labelPlural":"Change Event: Product Attribute + Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Attribute Set","labelPlural":"Share: Product Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0l","label":"Product + Attribute Set","labelPlural":"Product Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Item","labelPlural":"Change Event: Attribute Item","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0m","label":"Attribute + Item","labelPlural":"Attribute Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductFeature__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Feature","labelPlural":"Change Event: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductFeature__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Feature","labelPlural":"Share: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0n","label":"Product + Feature","labelPlural":"Product Features","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductOption__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Option","labelPlural":"Change Event: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductOption__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Option","labelPlural":"Share: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0o","label":"Product + Option","labelPlural":"Product Options","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Rule","labelPlural":"Change Event: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Rule","labelPlural":"Share: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0p","label":"Product + Rule","labelPlural":"Product Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ProductRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Document","labelPlural":"Change Event: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Document","labelPlural":"History: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0q","label":"Quote + Document","labelPlural":"Quote Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Rate","labelPlural":"Change Event: Quote Line + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0r","label":"Quote + Line Consumption Rate","labelPlural":"Quote Line Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Schedule","labelPlural":"Change Event: Quote + Line Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0s","label":"Quote + Line Consumption Schedule","labelPlural":"Quote Line Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Group","labelPlural":"Change Event: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Group","labelPlural":"History: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0t","label":"Quote + Line Group","labelPlural":"Quote Line Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Pricing Guidance","labelPlural":"Change Event: Quote Line + Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Pricing Guidance","labelPlural":"History: Quote Line Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0u","label":"Quote + Line Pricing Guidance","labelPlural":"Quote Line Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line","labelPlural":"Change Event: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line","labelPlural":"History: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0v","label":"Quote + Line","labelPlural":"Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteProcess__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Process","labelPlural":"Change Event: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteProcess__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Process","labelPlural":"Share: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0w","label":"Quote + Process","labelPlural":"Quote Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteProcess__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Template","labelPlural":"Change Event: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Template","labelPlural":"History: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Template","labelPlural":"Share: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0x","label":"Quote + Template","labelPlural":"Quote Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTemplate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTerm__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Term","labelPlural":"Change Event: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTerm__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Term","labelPlural":"Share: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0y","label":"Quote + Term","labelPlural":"Quote Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTerm__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote","labelPlural":"Change Event: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote","labelPlural":"History: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Quote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote","labelPlural":"Share: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0z","label":"Quote","labelPlural":"Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Quote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Quote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RecordJob__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Record Job","labelPlural":"Change Event: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RecordJob__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Record Job","labelPlural":"Share: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a10","label":"Record + Job","labelPlural":"Record Jobs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RelatedContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Additional Document","labelPlural":"Change Event: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RelatedContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Additional Document","labelPlural":"Share: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a12","label":"Additional + Document","labelPlural":"Additional Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchFilter__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Filter","labelPlural":"Change Event: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchFilter__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Filter","labelPlural":"Share: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a14","label":"Search + Filter","labelPlural":"Search Filters","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SearchFilter__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchIndex__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Index","labelPlural":"Change Event: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchIndex__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Index","labelPlural":"Share: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a15","label":"Search + Index","labelPlural":"Search Index","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Solution Group","labelPlural":"Change Event: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Solution Group","labelPlural":"History: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SolutionGroup__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Solution Group","labelPlural":"Share: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a16","label":"Solution + Group","labelPlural":"Solution Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SolutionGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedAsset__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Asset","labelPlural":"Change Event: Subscribed Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a17","label":"Subscribed + Asset","labelPlural":"Subscribed Assets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Quote Line","labelPlural":"Change Event: Subscribed Quote + Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscribed Quote Line","labelPlural":"Share: Subscribed Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a18","label":"Subscribed + Quote Line","labelPlural":"Subscribed Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Rate","labelPlural":"Change Event: Subscription + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a19","label":"Subscription + Consumption Rate","labelPlural":"Subscription Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Schedule","labelPlural":"Change Event: Subscription + Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1A","label":"Subscription + Consumption Schedule","labelPlural":"Subscription Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Subscription__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription","labelPlural":"Change Event: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Subscription__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscription","labelPlural":"Share: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1B","label":"Subscription","labelPlural":"Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SummaryVariable__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Summary Variable","labelPlural":"Change Event: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SummaryVariable__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Summary Variable","labelPlural":"Share: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1C","label":"Summary + Variable","labelPlural":"Summary Variables","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SummaryVariable__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TaxExemptionCertificate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Tax Exemption Certificate","labelPlural":"Change Event: Tax Exemption + Certificate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1D","label":"Tax + Exemption Certificate","labelPlural":"Tax Exemption Certificates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Content","labelPlural":"Change Event: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TemplateContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Template Content","labelPlural":"Share: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1E","label":"Template + Content","labelPlural":"Template Content","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__TemplateContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateSection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Section","labelPlural":"Change Event: Template Section","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1F","label":"Template + Section","labelPlural":"Template Sections","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TermCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Term Condition","labelPlural":"Change Event: Term Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1G","label":"Term + Condition","labelPlural":"Term Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Theme__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Theme","labelPlural":"Change Event: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Theme__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Theme","labelPlural":"Share: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1H","label":"Theme","labelPlural":"Themes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Theme__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Theme__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TimingLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Timing Log","labelPlural":"Change Event: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TimingLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Timing Log","labelPlural":"Share: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1I","label":"Timing + Log","labelPlural":"Timing Logs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__UpgradeSource__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Upgrade Source","labelPlural":"Change Event: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__UpgradeSource__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Upgrade Source","labelPlural":"Share: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1J","label":"Upgrade + Source","labelPlural":"Upgrade Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote Line","labelPlural":"Change Event: Web Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1K","label":"Web + Quote Line","labelPlural":"Web Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote","labelPlural":"Change Event: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Web Quote","labelPlural":"History: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__WebQuote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Web Quote","labelPlural":"Share: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1L","label":"Web + Quote","labelPlural":"Web Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__WebQuote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J4","label":"Service + Provider SAML Attribute","labelPlural":"Service Provider SAML Attributes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SPSamlAttributes","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SPSamlAttributes/{ID}","describe":"/services/data/v58.0/sobjects/SPSamlAttributes/describe","sobject":"/services/data/v58.0/sobjects/SPSamlAttributes"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0LE","label":"SAML + Single Sign-On Setting","labelPlural":"SAML Single Sign-On Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SamlSsoConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SamlSsoConfig/{ID}","describe":"/services/data/v58.0/sobjects/SamlSsoConfig/describe","sobject":"/services/data/v58.0/sobjects/SamlSsoConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hA","label":"Scheduling + Constraint","labelPlural":"Scheduling Constraints","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingConstraint","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraint/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SchedulingConstraint/describe","layouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingConstraint"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SchedulingConstraint","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scheduling + Constraint Share","labelPlural":"Scheduling Constraint Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingConstraintShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraintShare/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingConstraintShare/describe","sobject":"/services/data/v58.0/sobjects/SchedulingConstraintShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0no","label":"Scheduling + Objective","labelPlural":"Scheduling Objectives","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingObjective","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjective/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjective/describe","layouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingObjective"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0np","label":"Scheduling + Objective Parameter","labelPlural":"Scheduling Objective Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingObjectiveParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Md","label":"Scheduling + Rule","labelPlural":"Scheduling Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingRule/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRule/describe","layouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hm","label":"Scheduling + Rule Parameter","labelPlural":"Scheduling Rule Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingRuleParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingRuleParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRuleParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingRuleParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01N","label":"Custom + S-Control","labelPlural":"Custom S-Controls","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Scontrol","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Scontrol/{ID}","describe":"/services/data/v58.0/sobjects/Scontrol/describe","sobject":"/services/data/v58.0/sobjects/Scontrol"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01f","label":"Scorecard","labelPlural":"Scorecards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Scorecard","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Scorecard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Scorecard/{ID}","describe":"/services/data/v58.0/sobjects/Scorecard/describe","layouts":"/services/data/v58.0/sobjects/Scorecard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Scorecard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qn","label":"Scorecard + Association","labelPlural":"Scorecard Associations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ScorecardAssociation","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardAssociation/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardAssociation/describe","layouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardAssociation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Om","label":"Scorecard + Metric","labelPlural":"Scorecard Metrics","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ScorecardMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardMetric/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardMetric/describe","layouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardMetric"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Scorecard","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scorecard + Share","labelPlural":"Scorecard Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ScorecardShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ScorecardShare/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardShare/describe","sobject":"/services/data/v58.0/sobjects/ScorecardShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4co","label":"Search + Layout","labelPlural":"Search Layouts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SearchLayout","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchLayout/{ID}","describe":"/services/data/v58.0/sobjects/SearchLayout/describe","sobject":"/services/data/v58.0/sobjects/SearchLayout"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MD","label":"Promoted + Search Term","labelPlural":"Promoted Search Terms","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SearchPromotionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchPromotionRule/{ID}","describe":"/services/data/v58.0/sobjects/SearchPromotionRule/describe","layouts":"/services/data/v58.0/sobjects/SearchPromotionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SearchPromotionRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09v","label":"Security + Custom Baseline","labelPlural":"Security Custom Baselines","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SecurityCustomBaseline","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SecurityCustomBaseline/{ID}","describe":"/services/data/v58.0/sobjects/SecurityCustomBaseline/describe","sobject":"/services/data/v58.0/sobjects/SecurityCustomBaseline"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0q6","label":"Seller","labelPlural":"Sellers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Seller","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Seller/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Seller/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Seller/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Seller/describe","layouts":"/services/data/v58.0/sobjects/Seller/describe/layouts","sobject":"/services/data/v58.0/sobjects/Seller"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Seller","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + History","labelPlural":"Seller History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerHistory/{ID}","describe":"/services/data/v58.0/sobjects/SellerHistory/describe","sobject":"/services/data/v58.0/sobjects/SellerHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Seller","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + Share","labelPlural":"Seller Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerShare/{ID}","describe":"/services/data/v58.0/sobjects/SellerShare/describe","sobject":"/services/data/v58.0/sobjects/SellerShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sentry_Active_Config__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sentry Active Config","labelPlural":"Change Event: Sentry Active Config","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1S","label":"Sentry + Active Config","labelPlural":"Sentry Active Config","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe","quickActions":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m00","label":"Sentry + Config","labelPlural":"Sentry Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sentry_Config__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Config__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe","layouts":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Config__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"e00","label":"Sentry + Error","labelPlural":"Sentry Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Error__e","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Error__e/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Error__e/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Error__e/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Error__e"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jR","label":"Serialized + Product","labelPlural":"Serialized Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProduct","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProduct/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProduct/describe","quickActions":"/services/data/v58.0/sobjects/SerializedProduct/quickActions","layouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProduct"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Feed","labelPlural":"Serialized Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product History","labelPlural":"Serialized Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SerializedProduct","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Share","labelPlural":"Serialized Product Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductShare/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductShare/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jM","label":"Serialized + Product Transaction","labelPlural":"Serialized Product Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProductTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe","layouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProductTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction Feed","labelPlural":"Serialized Product Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction History","labelPlural":"Serialized Product Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08p","label":"Service + Appointment","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Share","labelPlural":"Service Appointment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Status Value","labelPlural":"Service Appointment Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"810","label":"Service + Contract","labelPlural":"Service Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceContract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceContract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceContract/describe","quickActions":"/services/data/v58.0/sobjects/ServiceContract/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceContract/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceContract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Change Event","labelPlural":"Service Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Feed","labelPlural":"Service Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract History","labelPlural":"Service Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceContract","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Share","labelPlural":"Service Contract Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cr","label":"Service + Crew","labelPlural":"Service Crews","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrew","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrew/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrew/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrew/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrew"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Change Event","labelPlural":"Service Crew Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Feed","labelPlural":"Service Crew Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew History","labelPlural":"Service Crew History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cm","label":"Service + Crew Member","labelPlural":"Service Crew Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrewMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrewMember/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrewMember/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrewMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Change Event","labelPlural":"Service Crew Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Feed","labelPlural":"Service Crew Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member History","labelPlural":"Service Crew Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceCrew","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Share","labelPlural":"Service Crew Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SR","label":"Service + Report","labelPlural":"Service Reports","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReport/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReport/describe","sobject":"/services/data/v58.0/sobjects/ServiceReport"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Change Event","labelPlural":"Service Report Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report History","labelPlural":"Service Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SL","label":"Service + Report Layout","labelPlural":"Service Report Layouts","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ServiceReportLayout","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayout/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportLayout/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayout"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReportLayout","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Layout Change Event","labelPlural":"Service Report Layout Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportLayoutChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hn","label":"Service + Resource","labelPlural":"Service Resources","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResource/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResource/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hy","label":"Resource + Capacity","labelPlural":"Resource Capacities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceCapacity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourceCapacity/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Change Event","labelPlural":"Resource Capacity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Feed","labelPlural":"Resource Capacity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity History","labelPlural":"Resource Capacity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Change Event","labelPlural":"Service Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Feed","labelPlural":"Service Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource History","labelPlural":"Service Resource History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0l6","label":"Service + Resource Preference","labelPlural":"Service Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreference/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourcePreference/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreference"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ServiceResourcePreference not found in section + StandardFeedLabel","labelPlural":"__MISSING LABEL__ PropertyFile - val ServiceResourcePreference + not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference History","labelPlural":"Service Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResourcePreference","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference Share","labelPlural":"Service Resource Preference Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResource","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Share","labelPlural":"Service Resource Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hv","label":"Service + Resource Skill","labelPlural":"Service Resource Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe","layouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Change Event","labelPlural":"Service Resource Skill Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Feed","labelPlural":"Service Resource Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill History","labelPlural":"Service Resource Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9gd","label":"Service + Setup Provisioning","labelPlural":"Service Setup Provisionings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceSetupProvisioning","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/{ID}","describe":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/describe","sobject":"/services/data/v58.0/sobjects/ServiceSetupProvisioning"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hh","label":"Service + Territory","labelPlural":"Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritory/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritory/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritory/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Change Event","labelPlural":"Service Territory Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Feed","labelPlural":"Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory History","labelPlural":"Service Territory History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1Sl","label":"Service + Territory Location","labelPlural":"Service Territory Locations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Change Event","labelPlural":"Service Territory Location + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Feed","labelPlural":"Service Territory Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Territory + Location History","labelPlural":"Territory Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hu","label":"Service + Territory Member","labelPlural":"Service Territory Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritoryMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Change Event","labelPlural":"Service Territory Member Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Feed","labelPlural":"Service Territory Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member History","labelPlural":"Service Territory Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceTerritory","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Share","labelPlural":"Service Territory Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zh","label":"Session + Hijacking Event","labelPlural":"Session Hijacking Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SessionHijackingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SessionHijackingEvent/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zj","label":"Session + Hijacking Event Store","labelPlural":"Session Hijacking Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SessionHijackingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/SessionHijackingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SessionHijackingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Session + Hijacking Event Store Feed","labelPlural":"Session Hijacking Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Pa","label":"Session + Permission Set Activation","labelPlural":"Session Permission Set Activations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SessionPermSetActivation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionPermSetActivation/{ID}","describe":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe","layouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionPermSetActivation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Ys","label":"Setup + Assistant Step","labelPlural":"Setup Assistant Steps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAssistantStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAssistantStep/{ID}","describe":"/services/data/v58.0/sobjects/SetupAssistantStep/describe","sobject":"/services/data/v58.0/sobjects/SetupAssistantStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ym","label":"Setup + Audit Trail Entry","labelPlural":"Setup Audit Trail Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAuditTrail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAuditTrail/{ID}","describe":"/services/data/v58.0/sobjects/SetupAuditTrail/describe","sobject":"/services/data/v58.0/sobjects/SetupAuditTrail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J0","label":"Setup + Entity Access","labelPlural":"Setup Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/SetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/SetupEntityAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m01","label":"Setup + Configuration Data","labelPlural":"Setup Configuration Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Configuration_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m02","label":"Setup + Connection Data","labelPlural":"Setup Connection Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Connection_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Data__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Data","labelPlural":"Change Event: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Setup_Data__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Setup Data","labelPlural":"Share: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__Share/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Data__Share/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1T","label":"Setup + Data","labelPlural":"Setup Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Data__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Setup_Data__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Data__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Data__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Settings__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Settings","labelPlural":"Change Event: Setup Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1U","label":"Setup + Settings","labelPlural":"Setup Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__c/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Settings__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Settings__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Settings__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Settings__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0a0","label":"Shift","labelPlural":"Shifts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shift","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shift/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shift/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shift/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shift/describe","quickActions":"/services/data/v58.0/sobjects/Shift/quickActions","layouts":"/services/data/v58.0/sobjects/Shift/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shift"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Change Event","labelPlural":"Shift Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Feed","labelPlural":"Shift Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + History","labelPlural":"Shift History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w1","label":"Shift + Pattern","labelPlural":"Shift Patterns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPattern","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPattern/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShiftPattern/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPattern/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPattern"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Change Event","labelPlural":"Shift Pattern Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w2","label":"Shift + Pattern Entry","labelPlural":"Shift Pattern Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPatternEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntry/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPatternEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Change Event","labelPlural":"Shift Pattern Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Feed","labelPlural":"Shift Pattern Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry History","labelPlural":"Shift Pattern Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Feed","labelPlural":"Shift Pattern Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern History","labelPlural":"Shift Pattern History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftPattern","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Share","labelPlural":"Shift Pattern Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shift","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Share","labelPlural":"Shift Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Status Value","labelPlural":"Shift Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftStatus/{ID}","describe":"/services/data/v58.0/sobjects/ShiftStatus/describe","sobject":"/services/data/v58.0/sobjects/ShiftStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iJ","label":"Shift + Template","labelPlural":"Shift Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplate/describe","layouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Change Event","labelPlural":"Shift Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Share","labelPlural":"Shift Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OB","label":"Shipment","labelPlural":"Shipments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shipment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shipment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shipment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shipment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shipment/describe","quickActions":"/services/data/v58.0/sobjects/Shipment/quickActions","layouts":"/services/data/v58.0/sobjects/Shipment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shipment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Change Event","labelPlural":"Shipment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShipmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShipmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShipmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Feed","labelPlural":"Shipment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + History","labelPlural":"Shipment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ob","label":"Shipment + Item","labelPlural":"Shipment Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ShipmentItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShipmentItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShipmentItem/describe","quickActions":"/services/data/v58.0/sobjects/ShipmentItem/quickActions","layouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShipmentItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shipment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Share","labelPlural":"Shipment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentShare/describe","sobject":"/services/data/v58.0/sobjects/ShipmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DM","label":"Site","labelPlural":"Sites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Site","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Site/{ID}","describe":"/services/data/v58.0/sobjects/Site/describe","sobject":"/services/data/v58.0/sobjects/Site"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GV","label":"Site + Detail","labelPlural":"Site Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteDetail/{ID}","describe":"/services/data/v58.0/sobjects/SiteDetail/describe","sobject":"/services/data/v58.0/sobjects/SiteDetail"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site","labelPlural":"Site","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteFeed/{ID}","describe":"/services/data/v58.0/sobjects/SiteFeed/describe","sobject":"/services/data/v58.0/sobjects/SiteFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site + History","labelPlural":"Site History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteHistory/{ID}","describe":"/services/data/v58.0/sobjects/SiteHistory/describe","sobject":"/services/data/v58.0/sobjects/SiteHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xs","label":"Trusted + Domains for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteIframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H0","label":"Site + Redirect Mapping","labelPlural":"Site Redirect Mapping","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteRedirectMapping","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteRedirectMapping/{ID}","describe":"/services/data/v58.0/sobjects/SiteRedirectMapping/describe","sobject":"/services/data/v58.0/sobjects/SiteRedirectMapping"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C5","label":"Skill","labelPlural":"Skills","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Skill","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Skill/{ID}","describe":"/services/data/v58.0/sobjects/Skill/describe","sobject":"/services/data/v58.0/sobjects/Skill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Skill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Change Event","labelPlural":"Skill Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hx","label":"Skill + Requirement","labelPlural":"Skill Requirements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SkillRequirement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SkillRequirement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SkillRequirement/describe","layouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/layouts","sobject":"/services/data/v58.0/sobjects/SkillRequirement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Change Event","labelPlural":"Skill Requirement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Feed","labelPlural":"Skill Requirement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementFeed/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementFeed/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement History","labelPlural":"Skill Requirement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementHistory/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementHistory/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"13B","label":"Skill + Type","labelPlural":"Skill Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillType/{ID}","describe":"/services/data/v58.0/sobjects/SkillType/describe","sobject":"/services/data/v58.0/sobjects/SkillType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"552","label":"Entitlement + Process","labelPlural":"Entitlement Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SlaProcess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SlaProcess/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SlaProcess/{ID}","describe":"/services/data/v58.0/sobjects/SlaProcess/describe","layouts":"/services/data/v58.0/sobjects/SlaProcess/describe/layouts","sobject":"/services/data/v58.0/sobjects/SlaProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"501","label":"Solution","labelPlural":"Solutions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Solution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Solution/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Solution/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Solution/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Solution/describe","layouts":"/services/data/v58.0/sobjects/Solution/describe/layouts","sobject":"/services/data/v58.0/sobjects/Solution"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Feed","labelPlural":"Solution Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SolutionFeed/describe","sobject":"/services/data/v58.0/sobjects/SolutionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + History","labelPlural":"Solution History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SolutionHistory/describe","sobject":"/services/data/v58.0/sobjects/SolutionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Status Value","labelPlural":"Solution Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionStatus/{ID}","describe":"/services/data/v58.0/sobjects/SolutionStatus/describe","sobject":"/services/data/v58.0/sobjects/SolutionStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xv","label":"Source + Change Notification","labelPlural":"Source Change Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SourceChangeNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SourceChangeNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/SourceChangeNotification/eventSchema","describe":"/services/data/v58.0/sobjects/SourceChangeNotification/describe","sobject":"/services/data/v58.0/sobjects/SourceChangeNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ST","label":"Stamp","labelPlural":"Stamps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stamp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stamp/{ID}","describe":"/services/data/v58.0/sobjects/Stamp/describe","sobject":"/services/data/v58.0/sobjects/Stamp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SA","label":"Stamp + Assignment","labelPlural":"Stamp Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StampAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StampAssignment/{ID}","describe":"/services/data/v58.0/sobjects/StampAssignment/describe","sobject":"/services/data/v58.0/sobjects/StampAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"081","label":"Static + Resource","labelPlural":"Static Resources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"StaticResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StaticResource/{ID}","describe":"/services/data/v58.0/sobjects/StaticResource/describe","sobject":"/services/data/v58.0/sobjects/StaticResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0M6","label":"Streaming + Channel","labelPlural":"Streaming Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"StreamingChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/StreamingChannel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/StreamingChannel/describe","layouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/layouts","push":"/services/data/v58.0/sobjects/StreamingChannel/{ID}/push","sobject":"/services/data/v58.0/sobjects/StreamingChannel"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"StreamingChannel","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Streaming + Channel Share","labelPlural":"Streaming Channel Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StreamingChannelShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StreamingChannelShare/{ID}","describe":"/services/data/v58.0/sobjects/StreamingChannelShare/describe","sobject":"/services/data/v58.0/sobjects/StreamingChannelShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Stripe_Connection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Stripe_Connection","labelPlural":"Change Event: Stripe_Connection","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1V","label":"Stripe_Connection","labelPlural":"Stripe_Connection","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__c/{ID}","describe":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe","quickActions":"/services/data/v58.0/sobjects/Stripe_Connection__c/quickActions","layouts":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sW","label":"Swarm","labelPlural":"Swarms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Swarm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Swarm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Swarm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Swarm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Swarm/describe","quickActions":"/services/data/v58.0/sobjects/Swarm/quickActions","layouts":"/services/data/v58.0/sobjects/Swarm/describe/layouts","sobject":"/services/data/v58.0/sobjects/Swarm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Feed","labelPlural":"Swarm Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + History","labelPlural":"Swarm History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sR","label":"Swarm + Member","labelPlural":"Swarm Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SwarmMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SwarmMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SwarmMember/describe","quickActions":"/services/data/v58.0/sobjects/SwarmMember/quickActions","layouts":"/services/data/v58.0/sobjects/SwarmMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/SwarmMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Feed","labelPlural":"Swarm Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member History","labelPlural":"Swarm Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SwarmMember","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Share","labelPlural":"Swarm Member Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Swarm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Share","labelPlural":"Swarm Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sync_Record__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sync Record","labelPlural":"Change Event: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Sync_Record__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Sync Record","labelPlural":"Share: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__Share/{ID}","describe":"/services/data/v58.0/sobjects/Sync_Record__Share/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1W","label":"Sync + Record","labelPlural":"Sync Management","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sync_Record__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Sync_Record__c/describe","quickActions":"/services/data/v58.0/sobjects/Sync_Record__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sync_Record__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0KD","label":"Tab + Definition","labelPlural":"Tab Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TabDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TabDefinition/{ID}","describe":"/services/data/v58.0/sobjects/TabDefinition/describe","sobject":"/services/data/v58.0/sobjects/TabDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00T","label":"Task","labelPlural":"Tasks","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Task","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Task/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Task/{ID}","describe":"/services/data/v58.0/sobjects/Task/describe","quickActions":"/services/data/v58.0/sobjects/Task/quickActions","layouts":"/services/data/v58.0/sobjects/Task/describe/layouts","sobject":"/services/data/v58.0/sobjects/Task"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Change Event","labelPlural":"Task Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TaskChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TaskChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TaskChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Feed","labelPlural":"Task Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskFeed/{ID}","describe":"/services/data/v58.0/sobjects/TaskFeed/describe","sobject":"/services/data/v58.0/sobjects/TaskFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Priority Value","labelPlural":"Task Priority Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskPriority","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskPriority/{ID}","describe":"/services/data/v58.0/sobjects/TaskPriority/describe","sobject":"/services/data/v58.0/sobjects/TaskPriority"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Status Value","labelPlural":"Task Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskStatus/{ID}","describe":"/services/data/v58.0/sobjects/TaskStatus/describe","sobject":"/services/data/v58.0/sobjects/TaskStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UT","label":"Tenant + Usage Entitlement","labelPlural":"Tenant Usage Entitlements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"TenantUsageEntitlement","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TenantUsageEntitlement/{ID}","describe":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe","layouts":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/TenantUsageEntitlement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hd","label":"Test + Suite Membership","labelPlural":"Test Suite Memberships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TestSuiteMembership","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TestSuiteMembership/{ID}","describe":"/services/data/v58.0/sobjects/TestSuiteMembership/describe","sobject":"/services/data/v58.0/sobjects/TestSuiteMembership"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jr","label":"Third + Party Account Link","labelPlural":"Third Party Account Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThirdPartyAccountLink","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/{ID}","describe":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/describe","sobject":"/services/data/v58.0/sobjects/ThirdPartyAccountLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hY","label":"Threat + Detection Feedback","labelPlural":"Threat Detection Feedback","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ThreatDetectionFeedback","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe","quickActions":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/quickActions","layouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/layouts","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedback"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ThreatDetectionFeedback","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Threat + Detection Feedback Feed","labelPlural":"Threat Detection Feedback Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThreatDetectionFeedbackFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/describe","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ts","label":"Time + Sheet","labelPlural":"Time Sheets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheet/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheet/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheet/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheet"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Change Event","labelPlural":"Time Sheet Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1te","label":"Time + Sheet Entry","labelPlural":"Time Sheet Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheetEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheetEntry/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheetEntry/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheetEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Change Event","labelPlural":"Time Sheet Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Feed","labelPlural":"Time Sheet Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry History","labelPlural":"Time Sheet Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Feed","labelPlural":"Time Sheet Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet History","labelPlural":"Time Sheet History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TimeSheet","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Share","labelPlural":"Time Sheet Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetShare/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetShare/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gj","label":"Time + Slot","labelPlural":"Time Slots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/TimeSlot/describe","layouts":"/services/data/v58.0/sobjects/TimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSlot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Slot Change Event","labelPlural":"Time Slot Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSlotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSlotChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jz","label":"Goal","labelPlural":"Goals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoal","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoal/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoal/describe","sobject":"/services/data/v58.0/sobjects/TodayGoal"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TodayGoal","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Goal + Share","labelPlural":"Goal Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoalShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoalShare/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoalShare/describe","sobject":"/services/data/v58.0/sobjects/TodayGoalShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TO","label":"Topic","labelPlural":"Topics","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Topic","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Topic/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Topic/{ID}","describe":"/services/data/v58.0/sobjects/Topic/describe","layouts":"/services/data/v58.0/sobjects/Topic/describe/layouts","sobject":"/services/data/v58.0/sobjects/Topic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FT","label":"Topic + Assignment","labelPlural":"Topic Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicAssignment/{ID}","describe":"/services/data/v58.0/sobjects/TopicAssignment/describe","sobject":"/services/data/v58.0/sobjects/TopicAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Topic","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Topic + Feed","labelPlural":"Topic Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicFeed/{ID}","describe":"/services/data/v58.0/sobjects/TopicFeed/describe","sobject":"/services/data/v58.0/sobjects/TopicFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0te","label":"Topic + User Event","labelPlural":"Topic User Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicUserEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicUserEvent/{ID}","describe":"/services/data/v58.0/sobjects/TopicUserEvent/describe","sobject":"/services/data/v58.0/sobjects/TopicUserEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0NI","label":"Transaction + Security Policy","labelPlural":"Transaction Security Policies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TransactionSecurityPolicy","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/{ID}","describe":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/describe","sobject":"/services/data/v58.0/sobjects/TransactionSecurityPolicy"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01h","label":"Language + Translation","labelPlural":"Language Translation","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Translation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Translation/{ID}","describe":"/services/data/v58.0/sobjects/Translation/describe","sobject":"/services/data/v58.0/sobjects/Translation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5pL","label":"Travel + Mode","labelPlural":"Travel Modes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TravelMode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TravelMode/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TravelMode/describe","quickActions":"/services/data/v58.0/sobjects/TravelMode/quickActions","layouts":"/services/data/v58.0/sobjects/TravelMode/describe/layouts","sobject":"/services/data/v58.0/sobjects/TravelMode"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TravelMode","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Feed","labelPlural":"Travel Mode Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeFeed/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeFeed/describe","sobject":"/services/data/v58.0/sobjects/TravelModeFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TravelMode","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Share","labelPlural":"Travel Mode Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeShare/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeShare/describe","sobject":"/services/data/v58.0/sobjects/TravelModeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gp","label":"Ui + Formula Criterion","labelPlural":"Ui Formula Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaCriterion/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09t","label":"Ui + Formula Rule","labelPlural":"Ui Formula Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaRule/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaRule/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Undecided + Event Relation","labelPlural":"Undecided Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UndecidedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UndecidedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/UndecidedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/UndecidedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hE","label":"Unit + of Measure","labelPlural":"Units of Measure","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UnitOfMeasure","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasure/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UnitOfMeasure/describe","layouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/layouts","sobject":"/services/data/v58.0/sobjects/UnitOfMeasure"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UnitOfMeasure","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Unit + of Measure Share","labelPlural":"Unit of Measure Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UnitOfMeasureShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasureShare/{ID}","describe":"/services/data/v58.0/sobjects/UnitOfMeasureShare/describe","sobject":"/services/data/v58.0/sobjects/UnitOfMeasureShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uw","label":"URI + Event","labelPlural":"URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEvent/{ID}","describe":"/services/data/v58.0/sobjects/UriEvent/describe","sobject":"/services/data/v58.0/sobjects/UriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ux","label":"URI + Event Stream ","labelPlural":"URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/UriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/UriEventStream/describe","sobject":"/services/data/v58.0/sobjects/UriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"005","label":"User","labelPlural":"Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"User","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/User/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/User/{ID}","namedLayouts":"/services/data/v58.0/sobjects/User/describe/namedLayouts/{LayoutName}","passwordUtilities":"/services/data/v58.0/sobjects/User/{ID}/password","describe":"/services/data/v58.0/sobjects/User/describe","quickActions":"/services/data/v58.0/sobjects/User/quickActions","layouts":"/services/data/v58.0/sobjects/User/describe/layouts","sobject":"/services/data/v58.0/sobjects/User"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ds","label":"Last + Used App","labelPlural":"Last Used App","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppInfo/{ID}","describe":"/services/data/v58.0/sobjects/UserAppInfo/describe","sobject":"/services/data/v58.0/sobjects/UserAppInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nw","label":"UserAppMenuCustomization","labelPlural":"UserAppMenuCustomizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomization/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomization/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomization"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserAppMenuCustomization","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"UserAppMenuCustomization + Share","labelPlural":"UserAppMenuCustomization Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomizationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07p","label":"Application","labelPlural":"Applications","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UserAppMenuItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuItem/describe","layouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserAppMenuItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Change Event","labelPlural":"User Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/UserChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/UserChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/UserChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UV","label":"User + Email Preferred Person","labelPlural":"User Email Preferred People","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPerson","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPerson"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserEmailPreferredPerson","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Email Preferred Person Share","labelPlural":"User Email Preferred Person Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPersonShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07u","label":"User + Entity Access","labelPlural":"User Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserEntityAccess"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Feed","labelPlural":"User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFeed/{ID}","describe":"/services/data/v58.0/sobjects/UserFeed/describe","sobject":"/services/data/v58.0/sobjects/UserFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fp","label":"User + Field Access","labelPlural":"User Field Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFieldAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFieldAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserFieldAccess/describe","sobject":"/services/data/v58.0/sobjects/UserFieldAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"100","label":"User + License","labelPlural":"User Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserLicense/describe","sobject":"/services/data/v58.0/sobjects/UserLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Na","label":"User + List View","labelPlural":"User List View","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListView/{ID}","describe":"/services/data/v58.0/sobjects/UserListView/describe","sobject":"/services/data/v58.0/sobjects/UserListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JU","label":"User + List View Criteria","labelPlural":"User List View Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListViewCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListViewCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UserListViewCriterion/describe","sobject":"/services/data/v58.0/sobjects/UserListViewCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yw","label":"User + Login","labelPlural":"User Login","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLogin/{ID}","describe":"/services/data/v58.0/sobjects/UserLogin/describe","sobject":"/services/data/v58.0/sobjects/UserLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"051","label":"User + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User + Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User + Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User + Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User + Provisioning Account Staging","labelPlural":"User Provisioning Account Stagings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccountStaging","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccountStaging/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccountStaging/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccountStaging"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HX","label":"User + Provisioning Mock Target","labelPlural":"User Provisioning Mock Targets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvMockTarget","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvMockTarget/{ID}","describe":"/services/data/v58.0/sobjects/UserProvMockTarget/describe","sobject":"/services/data/v58.0/sobjects/UserProvMockTarget"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Je","label":"User + Provisioning Config","labelPlural":"User Provisioning Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningConfig/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningConfig/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hs","label":"User + Provisioning Log","labelPlural":"User Provisioning Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningLog/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningLog/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HP","label":"User + Provisioning Request","labelPlural":"User Provisioning Requests","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe","layouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserProvisioningRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Provisioning Request Share","labelPlural":"User Provisioning Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Record Access","labelPlural":"User Record Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserRecordAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserRecordAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserRecordAccess/describe","sobject":"/services/data/v58.0/sobjects/UserRecordAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00E","label":"Role","labelPlural":"Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserRole/{ID}","describe":"/services/data/v58.0/sobjects/UserRole/describe","layouts":"/services/data/v58.0/sobjects/UserRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g2","label":"User + Setup Entity Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserSetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserSetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserSetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserSetupEntityAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"User","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0N2","label":"User + Share","labelPlural":"User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserShare/{ID}","describe":"/services/data/v58.0/sobjects/UserShare/describe","sobject":"/services/data/v58.0/sobjects/UserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qt","label":"Identity + Verification History","labelPlural":"Identity Verification History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VerificationHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VerificationHistory/{ID}","describe":"/services/data/v58.0/sobjects/VerificationHistory/describe","sobject":"/services/data/v58.0/sobjects/VerificationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OP","label":"Visualforce + Access Metric","labelPlural":"Visualforce Access Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VisualforceAccessMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/{ID}","describe":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/describe","sobject":"/services/data/v58.0/sobjects/VisualforceAccessMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"083","label":"Vote","labelPlural":"Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Vote","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Vote/{ID}","describe":"/services/data/v58.0/sobjects/Vote/describe","sobject":"/services/data/v58.0/sobjects/Vote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4V3","label":"Warranty + Term","labelPlural":"Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WarrantyTerm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/WarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/WarrantyTerm"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Change Event","labelPlural":"Warranty Term Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Feed","labelPlural":"Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term History","labelPlural":"Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WarrantyTerm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Share","labelPlural":"Warranty Term Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermShare/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermShare/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00b","label":"Custom + Button or Link","labelPlural":"Custom Buttons or Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WebLink","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WebLink/{ID}","describe":"/services/data/v58.0/sobjects/WebLink/describe","sobject":"/services/data/v58.0/sobjects/WebLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W5","label":"Access","labelPlural":"Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccess/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccess/describe","sobject":"/services/data/v58.0/sobjects/WorkAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkAccess","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Access + Share","labelPlural":"Access Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccessShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccessShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccessShare/describe","sobject":"/services/data/v58.0/sobjects/WorkAccessShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W2","label":"Badge + Received","labelPlural":"Badges Received","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadge","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadge/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadge/describe","layouts":"/services/data/v58.0/sobjects/WorkBadge/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadge"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W1","label":"Badge","labelPlural":"Badges","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadgeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/WorkBadgeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Feed","labelPlural":"Badge Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + History","labelPlural":"Badge History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkBadgeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work + Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order History","labelPlural":"Work Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1WL","label":"Work + Order Line Item","labelPlural":"Work Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/approvalLayouts","workOrderLineItemRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}/suggestedArticles","describe":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/layouts","workOrderLineItemArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/suggestedArticles","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Change Event","labelPlural":"Work Order Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Feed","labelPlural":"Work Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item History","labelPlural":"Work Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Status Value","labelPlural":"Work Order Line Item Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Share","labelPlural":"Work Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderShare/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Status Value","labelPlural":"Work Order Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gq","label":"Work + Plan","labelPlural":"Work Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlan/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlan/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Change Event","labelPlural":"Work Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Feed","labelPlural":"Work Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan History","labelPlural":"Work Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gr","label":"Work + Plan Selection Rule","labelPlural":"Work Plan Selection Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanSelectionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Change Event","labelPlural":"Work Plan Selection Rule + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Feed","labelPlural":"Work Plan Selection Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule History","labelPlural":"Work Plan Selection Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanSelectionRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Share","labelPlural":"Work Plan Selection Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Share","labelPlural":"Work Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7Iy","label":"Work + Plan Template","labelPlural":"Work Plan Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Change Event","labelPlural":"Work Plan Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8xu","label":"Work + Plan Template Entry","labelPlural":"Work Plan Template Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplateEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Change Event","labelPlural":"Work Plan Template Entry + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Feed","labelPlural":"Work Plan Template Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry History","labelPlural":"Work Plan Template Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Feed","labelPlural":"Work Plan Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template History","labelPlural":"Work Plan Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Share","labelPlural":"Work Plan Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hF","label":"Work + Step","labelPlural":"Work Steps","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStep/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStep/describe","quickActions":"/services/data/v58.0/sobjects/WorkStep/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStep/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStep"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Change Event","labelPlural":"Work Step Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Feed","labelPlural":"Work Step Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step History","labelPlural":"Work Step History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Status Value","labelPlural":"Work Step Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkStepStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4L0","label":"Work + Step Template","labelPlural":"Work Step Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStepTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStepTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkStepTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStepTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Change Event","labelPlural":"Work Step Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Feed","labelPlural":"Work Step Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template History","labelPlural":"Work Step Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkStepTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Share","labelPlural":"Work Step Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W0","label":"Thanks","labelPlural":"Thanks","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"WorkThanks","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanks/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanks/describe","layouts":"/services/data/v58.0/sobjects/WorkThanks/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkThanks"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkThanks","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Thanks + Share","labelPlural":"Thanks Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkThanksShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanksShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanksShare/describe","sobject":"/services/data/v58.0/sobjects/WorkThanksShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08q","label":"Work + Type","labelPlural":"Work Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkType/describe","quickActions":"/services/data/v58.0/sobjects/WorkType/quickActions","layouts":"/services/data/v58.0/sobjects/WorkType/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkType"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Change Event","labelPlural":"Work Type Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Feed","labelPlural":"Work Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VS","label":"Work + Type Group","labelPlural":"Work Type Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroup/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroup/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Feed","labelPlural":"Work Type Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group History","labelPlural":"Work Type Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Wz","label":"Work + Type Group Member","labelPlural":"Work Type Group Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroupMember/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member Feed","labelPlural":"Work Type Group Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member History","labelPlural":"Work Type Group Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkTypeGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2eQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:37 GMT + Set-Cookie: + - BrowserId=clagRGxPEe6h_nkOudezxA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:37 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=389/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=144000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2eQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2eQAA&product=prod_OpaRgTFC9PbloX + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - b1bd7d9d-31aa-4cd1-b99e-dd33e0fe9446 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:37 GMT + Content-Type: + - application/json + Content-Length: + - '848' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - b1bd7d9d-31aa-4cd1-b99e-dd33e0fe9446 + Original-Request: + - req_F8GvIovMD85Z5U + Request-Id: + - req_F8GvIovMD85Z5U + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGPIsgf92XbAOphbcHKGl", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479897, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2eQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2eQAA" + }, + "nickname": null, + "product": "prod_OpaRgTFC9PbloX", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2eQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vGPIsgf92XbAOphbcHKGl"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:37 GMT + Set-Cookie: + - BrowserId=cpnETWxPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:37 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=388/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2eQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:37 GMT + Set-Cookie: + - BrowserId=ctRcoGxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:37 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=388/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/products/prod_OpaRgTFC9PbloX + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_F8GvIovMD85Z5U","request_duration_ms":247}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:38 GMT + Content-Type: + - application/json + Content-Length: + - '760' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_cxuKcvMDNnICba + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaRgTFC9PbloX", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479895, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNQQA0", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNQQA0" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-7", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479895, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNQQA0%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:38 GMT + Set-Cookie: + - BrowserId=cxJ3C2xPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:38 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=393/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2fQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:38 GMT + Set-Cookie: + - BrowserId=cyrgM2xPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:38 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=390/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2fQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:38 GMT + Set-Cookie: + - BrowserId=c0e3-GxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:38 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=390/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=144000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2fQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2fQAA&product=prod_OpaRgTFC9PbloX + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_cxuKcvMDNnICba","request_duration_ms":197}}' + Idempotency-Key: + - 4e92d1a0-954d-42a9-8399-6f334e84be1f + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:39 GMT + Content-Type: + - application/json + Content-Length: + - '848' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 4e92d1a0-954d-42a9-8399-6f334e84be1f + Original-Request: + - req_KvBXnjATXGdAiv + Request-Id: + - req_KvBXnjATXGdAiv + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGQIsgf92XbAOgu5r7kzW", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479898, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2fQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2fQAA" + }, + "nickname": null, + "product": "prod_OpaRgTFC9PbloX", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2fQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vGQIsgf92XbAOgu5r7kzW"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:39 GMT + Set-Cookie: + - BrowserId=c49IO2xPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:39 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=392/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2fQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:39 GMT + Set-Cookie: + - BrowserId=c8jOomxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:39 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=395/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/products + body: + encoding: UTF-8 + string: name=REST+Product2++2023-10-16+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t8N000003DfNaQAK&metadata[salesforce_product2_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01t8N000003DfNaQAK + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_O25TdGbEQfWfmw","request_duration_ms":258}}' + Idempotency-Key: + - de72eef2-369c-4d8e-abb8-60f6d4d3001e + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:39 GMT + Content-Type: + - application/json + Content-Length: + - '760' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - de72eef2-369c-4d8e-abb8-60f6d4d3001e + Original-Request: + - req_Rn0bWQWVUyJVXx + Request-Id: + - req_Rn0bWQWVUyJVXx + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaR35cElEF1fU", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479899, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNaQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNaQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-8", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479899, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNaQAK + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"prod_OpaR35cElEF1fU"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:40 GMT + Set-Cookie: + - BrowserId=dAtVJmxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=391/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNaQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:40 GMT + Set-Cookie: + - BrowserId=dD82-2xPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=390/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNaQAK + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:40 GMT + Set-Cookie: + - BrowserId=dFa2zmxPEe6NxyXu6HAylQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=396/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:40 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000003DfNaQAK"},"Id":"01t8N000003DfNaQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:11:08.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:40.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:40.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears","SBQQ__BlockPricingField__c":"Quantity","SBQQ__ChargeType__c":null,"SBQQ__Component__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationFieldSet__c":null,"SBQQ__ConfigurationFields__c":null,"SBQQ__ConfigurationFormTitle__c":null,"SBQQ__ConfigurationType__c":null,"SBQQ__ConfigurationValidator__c":null,"SBQQ__ConfiguredCodePattern__c":null,"SBQQ__ConfiguredDescriptionPattern__c":null,"SBQQ__CostEditable__c":false,"SBQQ__CostSchedule__c":null,"SBQQ__CustomConfigurationPage__c":null,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__CustomerCommunityAvailability__c":null,"SBQQ__DefaultPricingTable__c":null,"SBQQ__DefaultQuantity__c":1.0,"SBQQ__DescriptionLocked__c":false,"SBQQ__DiscountCategory__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DynamicPricingConstraint__c":null,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionLayout__c":null,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingGuidance__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductPictureID__c":null,"SBQQ__QuantityEditable__c":true,"SBQQ__QuantityScale__c":null,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__RenewalProduct__c":null,"SBQQ__SortOrder__c":null,"SBQQ__Specifications__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":1.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_OpaR35cElEF1fU","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OpaR35cElEF1fU"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2gQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:40 GMT + Set-Cookie: + - BrowserId=dHIGzmxPEe6dXpGQu2mPGg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=391/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2gQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:40 GMT + Set-Cookie: + - BrowserId=dIxF2mxPEe6PZa3idtk-9A; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:40 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=392/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=144000.0&recurring[interval_count]=1&recurring[usage_type]=metered&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2gQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2gQAA&product=prod_OpaR35cElEF1fU + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_KvBXnjATXGdAiv","request_duration_ms":244}}' + Idempotency-Key: + - d54e4f26-2365-42a4-b678-eecdf47a621e + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:41 GMT + Content-Type: + - application/json + Content-Length: + - '847' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - d54e4f26-2365-42a4-b678-eecdf47a621e + Original-Request: + - req_LBFJk788k2ZgNq + Request-Id: + - req_LBFJk788k2ZgNq + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGTIsgf92XbAOPtBeKhZC", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479901, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2gQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2gQAA" + }, + "nickname": null, + "product": "prod_OpaR35cElEF1fU", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "metered" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2gQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vGTIsgf92XbAOPtBeKhZC"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:41 GMT + Set-Cookie: + - BrowserId=dNGLoGxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:41 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=390/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2gQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:41 GMT + Set-Cookie: + - BrowserId=dRVyO2xPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:41 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=391/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/products/prod_OpaR35cElEF1fU + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_LBFJk788k2ZgNq","request_duration_ms":261}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:41 GMT + Content-Type: + - application/json + Content-Length: + - '760' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_QLV8XHM3DqLmci + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaR35cElEF1fU", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479899, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNaQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNaQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-8", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479899, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNaQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:42 GMT + Set-Cookie: + - BrowserId=dUxgqmxPEe6d2in-u8vADg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:42 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=393/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2hQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:42 GMT + Set-Cookie: + - BrowserId=dWSjvWxPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:42 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=389/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2hQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:42 GMT + Set-Cookie: + - BrowserId=dYEGImxPEe6dhS0iYJKafA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:42 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=392/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=144000.0&recurring[interval_count]=1&recurring[usage_type]=metered&recurring[interval]=month&metadata[salesforce_auto_archive]=true&metadata[salesforce_order_item_id]=8028N0000005p2hQAA&metadata[salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2hQAA&product=prod_OpaR35cElEF1fU + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_QLV8XHM3DqLmci","request_duration_ms":193}}' + Idempotency-Key: + - f926874f-1cbe-48da-a57f-ca8f01c38791 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:42 GMT + Content-Type: + - application/json + Content-Length: + - '847' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - f926874f-1cbe-48da-a57f-ca8f01c38791 + Original-Request: + - req_l1ntFRXexlQtQ6 + Request-Id: + - req_l1ntFRXexlQtQ6 + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGUIsgf92XbAOGpH6bEDZ", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479902, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2hQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2hQAA" + }, + "nickname": null, + "product": "prod_OpaR35cElEF1fU", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "metered" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005p2hQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vGUIsgf92XbAOGpH6bEDZ"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:42 GMT + Set-Cookie: + - BrowserId=dcUUDGxPEe6dhS0iYJKafA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:42 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=393/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2hQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:43 GMT + Set-Cookie: + - BrowserId=dfs-42xPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:43 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=392/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/products + body: + encoding: UTF-8 + string: name=REST+Product2++2023-10-16+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t8N000003DfNfQAK&metadata[salesforce_product2_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01t8N000003DfNfQAK + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_Rn0bWQWVUyJVXx","request_duration_ms":268}}' + Idempotency-Key: + - d32a6f10-e40c-44f5-b552-f3c92c4f0fc1 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:43 GMT + Content-Type: + - application/json + Content-Length: + - '760' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fproducts; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - d32a6f10-e40c-44f5-b552-f3c92c4f0fc1 + Original-Request: + - req_CJh78Le9k8CHw6 + Request-Id: + - req_CJh78Le9k8CHw6 + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "prod_OpaRpyN9Moky7e", + "object": "product", + "active": true, + "attributes": [], + "created": 1697479903, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000003DfNfQAK", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000003DfNfQAK" + }, + "name": "REST Product2 2023-10-16 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-10-16-000000-utc-9", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1697479903, + "url": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNfQAK + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"prod_OpaRpyN9Moky7e"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:43 GMT + Set-Cookie: + - BrowserId=dkGWjGxPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:43 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=393/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNfQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:44 GMT + Set-Cookie: + - BrowserId=dnExxmxPEe64Bctk7EGdcQ; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:44 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=394/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000003DfNfQAK + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:44 GMT + Set-Cookie: + - BrowserId=domcPmxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:44 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=393/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:43 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000003DfNfQAK"},"Id":"01t8N000003DfNfQAK","Name":"REST + Product2 2023-10-16 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-10-16T18:11:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:43.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:43.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears","SBQQ__BlockPricingField__c":"Quantity","SBQQ__ChargeType__c":null,"SBQQ__Component__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationFieldSet__c":null,"SBQQ__ConfigurationFields__c":null,"SBQQ__ConfigurationFormTitle__c":null,"SBQQ__ConfigurationType__c":null,"SBQQ__ConfigurationValidator__c":null,"SBQQ__ConfiguredCodePattern__c":null,"SBQQ__ConfiguredDescriptionPattern__c":null,"SBQQ__CostEditable__c":false,"SBQQ__CostSchedule__c":null,"SBQQ__CustomConfigurationPage__c":null,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__CustomerCommunityAvailability__c":null,"SBQQ__DefaultPricingTable__c":null,"SBQQ__DefaultQuantity__c":1.0,"SBQQ__DescriptionLocked__c":false,"SBQQ__DiscountCategory__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DynamicPricingConstraint__c":null,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionLayout__c":null,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingGuidance__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductPictureID__c":null,"SBQQ__QuantityEditable__c":true,"SBQQ__QuantityScale__c":null,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__RenewalProduct__c":null,"SBQQ__SortOrder__c":null,"SBQQ__Specifications__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":1.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_OpaRpyN9Moky7e","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OpaRpyN9Moky7e"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278028N0000005p2iQAA%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:44 GMT + Set-Cookie: + - BrowserId=dqerrGxPEe6yQOcRMfCG7w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:44 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=396/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t8N000003DfNfQAK%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:44 GMT + Set-Cookie: + - BrowserId=dsYvoWxPEe6cBW97hzHS_g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:44 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=392/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices + body: + encoding: UTF-8 + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=metered&recurring[interval]=month&product=prod_OpaRpyN9Moky7e&metadata[salesforce_pricebook_entry_id]=01u8N000003e0MAQAY&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01u8N000003e0MAQAY + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_l1ntFRXexlQtQ6","request_duration_ms":250}}' + Idempotency-Key: + - 66d486e0-5d86-4e8b-aa84-c4d394153042 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:44 GMT + Content-Type: + - application/json + Content-Length: + - '816' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices; block-all-mixed-content; default-src + 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src + 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 66d486e0-5d86-4e8b-aa84-c4d394153042 + Original-Request: + - req_Wy3G4THHxQEEjm + Request-Id: + - req_Wy3G4THHxQEEjm + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGWIsgf92XbAOOe60mLEq", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479904, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u8N000003e0MAQAY", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003e0MAQAY" + }, + "nickname": null, + "product": "prod_OpaRpyN9Moky7e", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "metered" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 12000, + "unit_amount_decimal": "12000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u8N000003e0MAQAY + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1O1vGWIsgf92XbAOOe60mLEq"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:44 GMT + Set-Cookie: + - BrowserId=dwPUu2xPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:45 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=396/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278028N0000005p2iQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:45 GMT + Set-Cookie: + - BrowserId=dyyS3GxPEe65G22SmR0u9g; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:45 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=394/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278018N00000032buQAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:45 GMT + Set-Cookie: + - BrowserId=d0dtcWxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:45 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=397/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:45 GMT + Set-Cookie: + - BrowserId=d3U0J2xPEe6dhS0iYJKafA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:45 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=394/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfPQAW"},"Id":"a0v8N000002TJfPQAW","IsDeleted":false,"Name":"QL-0000546","CreatedDate":"2023-10-16T18:11:14.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:28.000+0000","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihTUAQ","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2024-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0LvQAI","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNQQA0","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479871806","SBQQ__SegmentLabel__c":"Year 1","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2024-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:46 GMT + Set-Cookie: + - BrowserId=d8UB5mxPEe6MLGWxlZerow; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:46 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=398/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfeQAG"},"Id":"a0v8N000002TJfeQAG","IsDeleted":false,"Name":"QL-0000552","CreatedDate":"2023-10-16T18:11:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:28.000+0000","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears","SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihYUAQ","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2024-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":2.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0M5QAI","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNaQAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":1.0,"SBQQ__SegmentKey__c":"1697479877141","SBQQ__SegmentLabel__c":"Year 1","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2023-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2024-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-10-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:46 GMT + Set-Cookie: + - BrowserId=d-nvoGxPEe6FLXmWkW6B6w; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:46 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=394/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJfQQAW"},"Id":"a0v8N000002TJfQQAW","IsDeleted":false,"Name":"QL-0000547","CreatedDate":"2023-10-16T18:11:14.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:28.000+0000","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihTUAQ","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2025-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0LvQAI","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNQQA0","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479871806","SBQQ__SegmentLabel__c":"Year 2","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2024-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2025-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2024-10-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:46 GMT + Set-Cookie: + - BrowserId=eA8DkmxPEe6J8RuoCQAGgA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:46 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=393/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:28 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002TJffQAG"},"Id":"a0v8N000002TJffQAG","IsDeleted":false,"Name":"QL-0000553","CreatedDate":"2023-10-16T18:11:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:28.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-10-16T18:11:28.000+0000","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":"Arrears","SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":"a0D8N000004nihYUAQ","SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":"2025-10-15","SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":2.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003e0M5QAI","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000003DfNaQAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":2.0,"SBQQ__SegmentKey__c":"1697479877141","SBQQ__SegmentLabel__c":"Year 2","SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":"2024-10-16","SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":"2025-10-15","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2024-10-16","SBQQ__EffectiveSubscriptionTerm__c":24.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-10-16 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/subscription_schedules + body: + encoding: UTF-8 + string: end_behavior=cancel&metadata[salesforce_order_id]=8018N00000032buQAA&metadata[salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032buQAA&start_date=1697414400&customer=cus_OpaRxcAt1lVfwC&phases[0][items][0][price]=price_1O1vGWIsgf92XbAOOe60mLEq&phases[0][items][0][metadata][salesforce_order_item_id]=8028N0000005p2iQAA&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2iQAA&phases[0][items][1][price]=price_1O1vGPIsgf92XbAOphbcHKGl&phases[0][items][1][metadata][salesforce_order_item_id]=8028N0000005p2eQAA&phases[0][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2eQAA&phases[0][items][1][quantity]=1&phases[0][items][2][price]=price_1O1vGTIsgf92XbAOPtBeKhZC&phases[0][items][2][metadata][salesforce_order_item_id]=8028N0000005p2gQAA&phases[0][items][2][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2gQAA&phases[0][end_date]=1729036800&phases[0][metadata][salesforce_order_id]=8018N00000032buQAA&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032buQAA&phases[0][metadata][salesforce_segment_key]=1697479871806&phases[0][metadata][salesforce_segment_label]=Year++1&phases[1][items][0][price]=price_1O1vGWIsgf92XbAOOe60mLEq&phases[1][items][0][metadata][salesforce_order_item_id]=8028N0000005p2iQAA&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2iQAA&phases[1][items][1][price]=price_1O1vGQIsgf92XbAOgu5r7kzW&phases[1][items][1][metadata][salesforce_order_item_id]=8028N0000005p2fQAA&phases[1][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2fQAA&phases[1][items][1][quantity]=1&phases[1][items][2][price]=price_1O1vGUIsgf92XbAOGpH6bEDZ&phases[1][items][2][metadata][salesforce_order_item_id]=8028N0000005p2hQAA&phases[1][items][2][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005p2hQAA&phases[1][end_date]=1760572800&phases[1][metadata][salesforce_order_id]=8018N00000032buQAA&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N00000032buQAA&phases[1][metadata][salesforce_segment_key]=1697479871806&phases[1][metadata][salesforce_segment_label]=Year++2 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_CJh78Le9k8CHw6","request_duration_ms":283}}' + Idempotency-Key: + - 8d26c460-fe98-46a4-be68-c10ef29d43e4 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:47 GMT + Content-Type: + - application/json + Content-Length: + - '5665' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 8d26c460-fe98-46a4-be68-c10ef29d43e4 + Original-Request: + - req_GzUefzjsnT0SBk + Request-Id: + - req_GzUefzjsnT0SBk + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vGZIsgf92XbAOTNzF15MV", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479907, + "current_phase": { + "end_date": 1729036800, + "start_date": 1697414400 + }, + "customer": "cus_OpaRxcAt1lVfwC", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032buQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032buQAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1729036800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2iQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2iQAA" + }, + "plan": "price_1O1vGWIsgf92XbAOOe60mLEq", + "price": "price_1O1vGWIsgf92XbAOOe60mLEq", + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2eQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2eQAA" + }, + "plan": "price_1O1vGPIsgf92XbAOphbcHKGl", + "price": "price_1O1vGPIsgf92XbAOphbcHKGl", + "quantity": 1, + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2gQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2gQAA" + }, + "plan": "price_1O1vGTIsgf92XbAOPtBeKhZC", + "price": "price_1O1vGTIsgf92XbAOPtBeKhZC", + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032buQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032buQAA", + "salesforce_segment_key": "1697479871806", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1697414400, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1760572800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2iQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2iQAA" + }, + "plan": "price_1O1vGWIsgf92XbAOOe60mLEq", + "price": "price_1O1vGWIsgf92XbAOOe60mLEq", + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2fQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2fQAA" + }, + "plan": "price_1O1vGQIsgf92XbAOgu5r7kzW", + "price": "price_1O1vGQIsgf92XbAOgu5r7kzW", + "quantity": 1, + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2hQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2hQAA" + }, + "plan": "price_1O1vGUIsgf92XbAOGpH6bEDZ", + "price": "price_1O1vGUIsgf92XbAOGpH6bEDZ", + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032buQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032buQAA", + "salesforce_segment_key": "1697479871806", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1729036800, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1O1vGZIsgf92XbAOI3nCaGvA", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032buQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"sub_sched_1O1vGZIsgf92XbAOTNzF15MV"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Mon, 16 Oct 2023 18:11:47 GMT + Set-Cookie: + - BrowserId=eJ-rQmxPEe60WTXgLFLnEg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:47 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=391/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8018N00000032buQAA-8018N00000032buQAA + body: + encoding: UTF-8 + string: '{"Primary_Record_ID__c":"8018N00000032buQAA","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8018N00000032buQAA","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1O1vGZIsgf92XbAOTNzF15MV","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_GzUefzjsnT0SBk"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Mon, 16 Oct 2023 18:11:48 GMT + Set-Cookie: + - BrowserId=eM9ts2xPEe6eVu82zXzxTA; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:48 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=391/5000000 + Location: + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OE2dUAG" + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"id":"a1W8N000000OE2dUAG","success":true,"errors":[],"created":true}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1O1vGZIsgf92XbAOTNzF15MV?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_Wy3G4THHxQEEjm","request_duration_ms":249}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:48 GMT + Content-Type: + - application/json + Content-Length: + - '12275' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_stp86L8PjhRTaz + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vGZIsgf92XbAOTNzF15MV", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479907, + "current_phase": { + "end_date": 1729036800, + "start_date": 1697414400 + }, + "customer": "cus_OpaRxcAt1lVfwC", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032buQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032buQAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1729036800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2iQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2iQAA" + }, + "plan": "price_1O1vGWIsgf92XbAOOe60mLEq", + "price": { + "id": "price_1O1vGWIsgf92XbAOOe60mLEq", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479904, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u8N000003e0MAQAY", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003e0MAQAY" + }, + "nickname": null, + "product": "prod_OpaRpyN9Moky7e", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "metered" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 12000, + "unit_amount_decimal": "12000" + }, + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2eQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2eQAA" + }, + "plan": "price_1O1vGPIsgf92XbAOphbcHKGl", + "price": { + "id": "price_1O1vGPIsgf92XbAOphbcHKGl", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479897, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2eQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2eQAA" + }, + "nickname": null, + "product": "prod_OpaRgTFC9PbloX", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "quantity": 1, + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2gQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2gQAA" + }, + "plan": "price_1O1vGTIsgf92XbAOPtBeKhZC", + "price": { + "id": "price_1O1vGTIsgf92XbAOPtBeKhZC", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479901, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2gQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2gQAA" + }, + "nickname": null, + "product": "prod_OpaR35cElEF1fU", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "metered" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032buQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032buQAA", + "salesforce_segment_key": "1697479871806", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1697414400, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1760572800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2iQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2iQAA" + }, + "plan": "price_1O1vGWIsgf92XbAOOe60mLEq", + "price": { + "id": "price_1O1vGWIsgf92XbAOOe60mLEq", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479904, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u8N000003e0MAQAY", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003e0MAQAY" + }, + "nickname": null, + "product": "prod_OpaRpyN9Moky7e", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "metered" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 12000, + "unit_amount_decimal": "12000" + }, + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2fQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2fQAA" + }, + "plan": "price_1O1vGQIsgf92XbAOgu5r7kzW", + "price": { + "id": "price_1O1vGQIsgf92XbAOgu5r7kzW", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479898, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2fQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2fQAA" + }, + "nickname": null, + "product": "prod_OpaRgTFC9PbloX", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "quantity": 1, + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2hQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2hQAA" + }, + "plan": "price_1O1vGUIsgf92XbAOGpH6bEDZ", + "price": { + "id": "price_1O1vGUIsgf92XbAOGpH6bEDZ", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1697479902, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2hQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2hQAA" + }, + "nickname": null, + "product": "prod_OpaR35cElEF1fU", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "metered" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + }, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032buQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032buQAA", + "salesforce_segment_key": "1697479871806", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1729036800, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1O1vGZIsgf92XbAOI3nCaGvA", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vGPIsgf92XbAOphbcHKGl + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_stp86L8PjhRTaz","request_duration_ms":231}}' + Idempotency-Key: + - 535ce241-95cd-4c1b-9904-4b72b5779f26 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:48 GMT + Content-Type: + - application/json + Content-Length: + - '849' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 535ce241-95cd-4c1b-9904-4b72b5779f26 + Original-Request: + - req_O8OnAp2bDNPMQD + Request-Id: + - req_O8OnAp2bDNPMQD + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGPIsgf92XbAOphbcHKGl", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479897, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2eQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2eQAA" + }, + "nickname": null, + "product": "prod_OpaRgTFC9PbloX", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vGTIsgf92XbAOPtBeKhZC + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_O8OnAp2bDNPMQD","request_duration_ms":283}}' + Idempotency-Key: + - cc59f5f4-6a90-498b-ad8d-5062a104c239 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:48 GMT + Content-Type: + - application/json + Content-Length: + - '848' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - cc59f5f4-6a90-498b-ad8d-5062a104c239 + Original-Request: + - req_w8S02paiOpv9Qy + Request-Id: + - req_w8S02paiOpv9Qy + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGTIsgf92XbAOPtBeKhZC", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479901, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2gQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2gQAA" + }, + "nickname": null, + "product": "prod_OpaR35cElEF1fU", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "metered" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vGQIsgf92XbAOgu5r7kzW + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_w8S02paiOpv9Qy","request_duration_ms":254}}' + Idempotency-Key: + - b6cdf411-b284-46ca-8165-8d4b83da9ab1 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:49 GMT + Content-Type: + - application/json + Content-Length: + - '849' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - b6cdf411-b284-46ca-8165-8d4b83da9ab1 + Original-Request: + - req_OfoNDJWJHNbyKm + Request-Id: + - req_OfoNDJWJHNbyKm + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGQIsgf92XbAOgu5r7kzW", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479898, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2fQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2fQAA" + }, + "nickname": null, + "product": "prod_OpaRgTFC9PbloX", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "licensed" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/prices/price_1O1vGUIsgf92XbAOGpH6bEDZ + body: + encoding: UTF-8 + string: active=false + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_OfoNDJWJHNbyKm","request_duration_ms":283}}' + Idempotency-Key: + - 5d38187f-0244-4910-bb1b-58a0b02a1a99 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:49 GMT + Content-Type: + - application/json + Content-Length: + - '848' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 5d38187f-0244-4910-bb1b-58a0b02a1a99 + Original-Request: + - req_9zx2B7DkejSTV0 + Request-Id: + - req_9zx2B7DkejSTV0 + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "price_1O1vGUIsgf92XbAOGpH6bEDZ", + "object": "price", + "active": false, + "billing_scheme": "per_unit", + "created": 1697479902, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_auto_archive": "true", + "salesforce_order_item_id": "8028N0000005p2hQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2hQAA" + }, + "nickname": null, + "product": "prod_OpaR35cElEF1fU", + "recurring": { + "aggregate_usage": null, + "interval": "month", + "interval_count": 1, + "trial_period_days": null, + "usage_type": "metered" + }, + "tax_behavior": "unspecified", + "tiers_mode": null, + "transform_quantity": null, + "type": "recurring", + "unit_amount": 144000, + "unit_amount_decimal": "144000" + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N00000032buQAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 16 Oct 2023 18:11:49 GMT + Set-Cookie: + - BrowserId=ecTJuWxPEe64BLedNMFFeg; domain=.salesforce.com; path=/; expires=Tue, + 15-Oct-2024 18:11:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Tue, 15-Oct-2024 18:11:49 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=394/5000000 + Last-Modified: + - Mon, 16 Oct 2023 18:11:47 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N00000032buQAA"},"Id":"8018N00000032buQAA","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JbPHJQA3","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006QZRWQA4","EffectiveDate":"2023-10-16","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"New","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-10-16T18:11:31.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000303","TotalAmount":8640.0,"CreatedDate":"2023-10-16T18:11:29.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-10-16T18:11:47.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-10-16T18:11:47.000+0000","LastViewedDate":"2023-10-16T18:11:47.000+0000","LastReferencedDate":"2023-10-16T18:11:47.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z8N000000zBc6QAE","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":8640.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1O1vGZIsgf92XbAOTNzF15MV","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1O1vGZIsgf92XbAOTNzF15MV"}' + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1O1vGZIsgf92XbAOTNzF15MV + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_9zx2B7DkejSTV0","request_duration_ms":274}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 16 Oct 2023 18:11:49 GMT + Content-Type: + - application/json + Content-Length: + - '5665' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy-Report-Only: + - report-uri /csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Request-Id: + - req_A7qVRHf5TrDfOn + Stripe-Account: + - acct_15uapDIsgf92XbAO + Stripe-Version: + - '2020-08-27' + Vary: + - Origin + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "sub_sched_1O1vGZIsgf92XbAOTNzF15MV", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1697479907, + "current_phase": { + "end_date": 1729036800, + "start_date": 1697414400 + }, + "customer": "cus_OpaRxcAt1lVfwC", + "default_settings": { + "application_fee_percent": null, + "automatic_tax": { + "enabled": false + }, + "billing_cycle_anchor": "automatic", + "billing_thresholds": null, + "collection_method": "charge_automatically", + "default_payment_method": null, + "default_source": null, + "description": null, + "invoice_settings": null, + "on_behalf_of": null, + "transfer_data": null + }, + "end_behavior": "cancel", + "livemode": false, + "metadata": { + "salesforce_order_id": "8018N00000032buQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032buQAA" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1729036800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2iQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2iQAA" + }, + "plan": "price_1O1vGWIsgf92XbAOOe60mLEq", + "price": "price_1O1vGWIsgf92XbAOOe60mLEq", + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2eQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2eQAA" + }, + "plan": "price_1O1vGPIsgf92XbAOphbcHKGl", + "price": "price_1O1vGPIsgf92XbAOphbcHKGl", + "quantity": 1, + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2gQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2gQAA" + }, + "plan": "price_1O1vGTIsgf92XbAOPtBeKhZC", + "price": "price_1O1vGTIsgf92XbAOPtBeKhZC", + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032buQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032buQAA", + "salesforce_segment_key": "1697479871806", + "salesforce_segment_label": "Year 1" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1697414400, + "transfer_data": null, + "trial_end": null + }, + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": null, + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [], + "end_date": 1760572800, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2iQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2iQAA" + }, + "plan": "price_1O1vGWIsgf92XbAOOe60mLEq", + "price": "price_1O1vGWIsgf92XbAOOe60mLEq", + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2fQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2fQAA" + }, + "plan": "price_1O1vGQIsgf92XbAOgu5r7kzW", + "price": "price_1O1vGQIsgf92XbAOgu5r7kzW", + "quantity": 1, + "tax_rates": [] + }, + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005p2hQAA", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005p2hQAA" + }, + "plan": "price_1O1vGUIsgf92XbAOGpH6bEDZ", + "price": "price_1O1vGUIsgf92XbAOGpH6bEDZ", + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N00000032buQAA", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N00000032buQAA", + "salesforce_segment_key": "1697479871806", + "salesforce_segment_label": "Year 2" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1729036800, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1O1vGZIsgf92XbAOI3nCaGvA", + "test_clock": null + } + recorded_at: Mon, 16 Oct 2023 00:00:00 GMT +recorded_with: VCR 6.2.0